aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..705270d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,31 @@
+# acms
+
+an automatically schema-versioned content management system
+
+## develop
+
+prepare test data:
+
+```
+cp -r samples/blog .
+cd blog
+git init
+git add .
+git commit -m 'first commit'
+```
+
+run frontend:
+
+```console
+cd frontend
+reload
+```
+
+run backend:
+
+```console
+cd backend
+cabal run backend -- serve
+```
+
+open browser at `http://localhost:8080`.