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:
cd frontend
reload
(to cross-compile the frontend to javascript, run: nix-build -A frontend
.)
run backend:
cabal run backend -- serve --port 8081 ./blog
open browser at http://localhost:8080
.