diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-29 12:42:29 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-29 12:42:29 +0100 |
commit | a5fbd781ccc9b64483cc499c375fa6e0e99ade1d (patch) | |
tree | 3bab3d0d6682fae6ba0a350db2326538b70988df /clesana |
Project skeleton
Diffstat (limited to 'clesana')
-rwxr-xr-x | clesana | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!/usr/bin/env python3 + +import cherrypy + +import cherry_lesana as cl + +def main(): + # TODO: read config from a file or something + config = { + '/': { + }, + } + cherrypy.quickstart(cl.App(), '/', config) + +if __name__ == '__main__': + main() |