summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--run.py7
2 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f51a2e2
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# victoria
+
+## a content management system for artists
+
+lightweight and written in flask
diff --git a/run.py b/run.py
new file mode 100644
index 0000000..ce48ff5
--- /dev/null
+++ b/run.py
@@ -0,0 +1,7 @@
+from victoria import create_app
+
+app = create_app()
+
+if __name__ == '__main__':
+ app.run(debug=True)
+