-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
27 lines (21 loc) · 896 Bytes
/
main.py
File metadata and controls
27 lines (21 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
# Project: "GDG Almería"
# Script: main.py - App handler mapping
# App identifier: gdg-almeria
# URL: gdg-almeria.appspot.com
# Author: Marcos Manuel Ortega - Indavelopers
# Version: v1-0 - 05/2016
# -- Imports --
import webapp2
from scripts.handlers import *
# -- App --
app = webapp2.WSGIApplication([('/', StaticPage),
('/eventos[/]?', EventsPage),
('/eventos/(.*)', EventPage),
('/admin[/]?', AdminPanel),
('/admin/eventos[/]?', AdminEventos),
('/admin/organizadores[/]?', AdminOrganizadores),
('/admin/blog[/]?', AdminBlog),
('/webmap[/]?', Webmap),
('/.*', Error404)],
debug=True)