-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.env.example
30 lines (24 loc) · 945 Bytes
/
.env.example
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
# Assumes the Postgres server was started using the Compose file in docker/postgres/docker-compose.yml
# If you have issues connecting with the postgres docker container, consider swapping `localhost` for `host.docker.internal`
DATABASE_URL=postgres://postgres:@localhost:5432/compass
# This should be a long random string in production
# One way to generate a suitable value is using `openssl rand -base64 32`
NEXTAUTH_SECRET=
# Only needed if you want to use sign in with Google
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
S3_USER_UPLOADS_ENDPOINT=http://localhost:9000
S3_USER_UPLOADS_REGION=us-east-1
S3_USER_UPLOADS_ACCESS_KEY_ID=minioadmin
S3_USER_UPLOADS_SECRET_ACCESS_KEY=minioadmin
S3_USER_UPLOADS_BUCKET_NAME=compass-files
SES_ACCESS_KEY_ID=
SES_SECRET_ACCESS_KEY=
SES_REGION=
EMAIL_SERVICE=smtp
EMAIL_AUTH_USER=
EMAIL_AUTH_PASS=
EMAIL_HOST=localhost
EMAIL_PORT=1025
BASE_URL=http://localhost:3000