We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 23a8e58 + 15e8f88 commit 4383e95Copy full SHA for 4383e95
.envrc.example
@@ -1,8 +1,10 @@
1
export ADDRESS=127.0.0.1
2
+export PORT=8181
3
export PROJECT_ID=xxx
4
# slack incoming webhook url
5
export NOTIFICATION_URL=xxx
6
# google cloud oauth
7
export CLIENT_SECRET=xxx
8
export CLIENT_ID=xxx
9
export IS_DEBUG=true
10
+export DB_PASSWORD=password
docs/getting-started-manual.md
@@ -66,10 +66,12 @@ Run application.
66
67
```bash
68
ADDRESS=127.0.0.1 \
69
+PORT=8181 \
70
PROJECT_ID=[YOUR_GOOGLE_PROJECT_ID] \
71
NOTIFICATION_URL=[INCOMING_WEBHOOK_URL] \
72
CLIENT_SECRET=[CLIENT_SECRET] \
73
CLIENT_ID=[CLIENT_ID] \
74
+DB_PASSWORD=password \
75
make run
76
```
77
0 commit comments