From a5fbd781ccc9b64483cc499c375fa6e0e99ade1d Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Sun, 29 Oct 2017 12:42:29 +0100 Subject: Project skeleton --- clesana | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 clesana (limited to 'clesana') diff --git a/clesana b/clesana new file mode 100755 index 0000000..492c74c --- /dev/null +++ b/clesana @@ -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() -- cgit v1.2.3