aboutsummaryrefslogtreecommitdiff
path: root/clesana
diff options
context:
space:
mode:
Diffstat (limited to 'clesana')
-rwxr-xr-xclesana16
1 files changed, 16 insertions, 0 deletions
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()