-
Notifications
You must be signed in to change notification settings - Fork 13
/
main.py
64 lines (52 loc) · 1.68 KB
/
main.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Sample main.py Tornado file
# (for Tornado on Heroku)
#
# Author: Mike Dory | dory.me
# Created: 11.12.11 | Updated: 06.02.13
# Contributions by Tedb0t, gregory80
#
# ------------------------------------------
#!/usr/bin/env python
import os.path
import tornado.escape
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
# import and define tornado-y things
from tornado.options import define
define("port", default=5000, help="run on the given port", type=int)
# application settings and handle mapping info
class Application(tornado.web.Application):
def __init__(self):
handlers = [
(r"/([^/]+)?", MainHandler)
]
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
debug=True,
)
tornado.web.Application.__init__(self, handlers, **settings)
# the main page
class MainHandler(tornado.web.RequestHandler):
def get(self, q):
if 'GOOGLEANALYTICSID' in os.environ:
google_analytics_id = os.environ['GOOGLEANALYTICSID']
else:
google_analytics_id = False
self.render(
"main.html",
page_title='Heroku Funtimes',
page_heading='Hi!',
google_analytics_id=google_analytics_id,
)
# RAMMING SPEEEEEEED!
def main():
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(Application())
http_server.listen(tornado.options.options.port)
# start it up
tornado.ioloop.IOLoop.instance().start()
if __name__ == "__main__":
main()