We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f38b624 commit cb4acecCopy full SHA for cb4acec
1 file changed
README.md
@@ -1 +1,26 @@
1
# Sarge
2
+
3
+### Requirements:
4
5
+- PNPM
6
+- Docker
7
+-
8
9
+### Running in Dev Mode:
10
11
+Add the following env variables to a .env file:
12
13
+```
14
+DB_USER="postgres"
15
+DB_PASSWORD="password"
16
+DB_NAME="sarge"
17
18
+DEV_DATABASE=postgresql://${DB_USER}:${DB_PASSWORD}@localhost:5432/${DB_NAME}
19
20
21
+Run the following commands in order
22
23
+- `pnpm install`
24
+- `pnpm run dev`
25
+- Once you are finished run `docker-compose down`
26
0 commit comments