25 lines
696 B
Python
25 lines
696 B
Python
#!/usr/bin/env python
|
|
# coding: utf-8
|
|
import functools
|
|
import json
|
|
|
|
import bottle
|
|
|
|
from server import routes
|
|
from server.jsonapi import DateAwareJSONEncoder
|
|
from server.models import db, Report
|
|
|
|
|
|
if __name__ == "__main__":
|
|
db.connect()
|
|
db.create_tables([Report])
|
|
|
|
# Use DateAwareJSONEncoder to dump JSON strings
|
|
# From http://stackoverflow.com/questions/21282040/bottle-framework-how-to-return-datetime-in-json-response#comment55718456_21282666. pylint: disable=locally-disabled,line-too-long
|
|
bottle.install(
|
|
bottle.JSONPlugin(
|
|
json_dumps=functools.partial(json.dumps, cls=DateAwareJSONEncoder)
|
|
)
|
|
)
|
|
bottle.run(host='0.0.0.0', port='8081')
|