- commit
- 35082a2
- parent
- ccb7239
- author
- Eric Bower
- date
- 2024-07-16 16:20:15 +0000 UTC
docs: dev doc
1 files changed,
+3,
-14
M
dev.md
M
dev.md
+3,
-14
1@@ -13,7 +13,7 @@ Initialize local env variables using direnv
2 echo dotenv > .envrc && direnv allow
3 ```
4
5-Boot up database
6+Boot up database (or bring your own)
7
8 ```bash
9 docker compose up -f docker-compose.yml -f docker-compose.override.yml --profile db -d
10@@ -26,21 +26,10 @@ make create
11 make migrate
12 ```
13
14-Build services
15-
16-```bash
17-make build
18-```
19-
20-All services are built inside the `./build` folder.
21-
22-If you want to start prose execute these binaries from the project root
23-directory:
24-
25 ```bash
26-./build/prose-web
27+go run ./cmd/pgs/ssh
28 # in a separate terminal
29-./build/prose-ssh
30+go run ./cmd/pgs/web
31 ```
32
33 ## deployment