blob: b1349d07e19d0acad8585c77028029f2b2a48144 (
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
32
33
34
35
|
# VibesHome
**Where all your vibes live**
A forum engine in progress. Do not use in production. Run ./migrate.py install and follow the prompts. Full install instructions below.
It needs everything, posting, and reply works! So it can be hacked on further 😅
# Full install instructions
On first run:
- `make install`
- `make migrate`
- `make run`
On subsequent runs:
- `make run`
# stuff to do on a git pull
```shell
./migrate.py upgrade-schema
```
# known bugs
The app server will invalidate your cookies on every make a change, and reload. as it regenerates the secret key used for session signing every time it restarts with stat.
I will fix this eventually.
Thus endith the instructions
|