Skip to content

Commit 7a8fa31

Browse files
committed
docs updated for profiles
1 parent df02cce commit 7a8fa31

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

docs/README.dev.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@ host and docker without any problems.
3131

3232
### Running Most the stack on Host
3333

34-
- `docker compose up db mail screenshot`
34+
- `docker compose --profile local up`
35+
- This starts all the services but the backend an frontend.
36+
- The assumption is this is where majority of the feature are added.
37+
- If you're working in one of the other services either docker compose down
38+
that service or spin up all the services you need with `docker compose <sv1> <sv2> <...> up`
3539
- `cd frontend; pnpm run dev`
3640
- All changes to the frontend code are hot reloaded.
3741
- Now user your favorite IDE!
3842
- Open a new terminal tab/window.
3943
- `cd server`
40-
- `./scripts/createServerKeys.sh`
41-
- Requires OpenSSL installed on machine.
4244
- `./gradlew build bootRun`
4345
- Use any IDE that you like, VSCode
4446
- Neovim
@@ -61,6 +63,10 @@ host and docker without any problems.
6163

6264
```bash
6365
docker compose db frontend mail screenshot
66+
# or the use of profiles.
67+
docker compose --profiles frontend
68+
# The profile hints to the type of work your doing.
69+
# frontend spins everything up but the frontend in docker.
6470
```
6571

6672
Then executing: `cd server && ./gradlew bootRun`

0 commit comments

Comments
 (0)