aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 705270de71afc35bc352fd279be27a94064b6b7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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`.