add README

This commit is contained in:
Alexander Foremny
2024-06-06 09:29:50 +02:00
parent 4003a86325
commit c7d0139116
3 changed files with 39 additions and 0 deletions

31
README.md Normal file
View File

@@ -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`.