-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (46 loc) · 1.6 KB
/
.env.example
File metadata and controls
56 lines (46 loc) · 1.6 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# MyArtverse Backend Config
MA_PORT=8081
MA_INTERFACE=0.0.0.0
MA_FRONTEND_DOMAIN=localhost
MA_FRONTEND_PORT=3000
MA_FRONTEND_HTTP=http://
MA_JWT_SECRET=JWT_SECRET
MA_COOKIE_SECRET=cookienomnom
MA_SESSION_SECRET=sessionnomnomsessionnomnomsessionnomnomsessionnomnom
# Postgres Database Config
DB_NAME=myartverse
DB_USER=postgres
DB_PASS=postgres
# localhost = Local Dev; postgres = Docker container
DB_HOST=localhost
DB_PORT=5432
# Email Config
SMTP_EMAIL_HOST=127.0.0.1
SMTP_EMAIL_PORT=2500
SMTP_EMAIL_SSL=false
SMTP_EMAIL_FROM=myartverse@myartverse.com
# Leave blank if using Mailslurp
SMTP_EMAIL_USER=
SMTP_EMAIL_PASS=
# AWS S3 Config
# Get these keys through MinIO from the MinIO Console (http://localhost:9000) or your cloud provider.
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
# These values are for local development with MinIO, change these for production deployment
AWS_DEFAULT_REGION="us-east-1"
# These values are for local development with MinIO, change these for production deployment
S3_ENDPOINT="http://localhost:9000"
S3_BUCKET=
GOOGLE_CLIENT_ID=VALUE_GO_HERE
GOOGLE_CLIENT_SECRET=VALUE_GO_HERE
GOOGLE_REDIRECT_URI=http://INTERFACE:PORT/v1/auth/google/callback
FACEBOOK_CLIENT_ID=VALUE_GO_HERE
FACEBOOK_CLIENT_SECRET=VALUE_GO_HERE
FACEBOOK_REDIRECT_URI=http://INTERFACE:PORT/v1/auth/facebook/callback
TWITTER_CLIENT_ID=VALUE_GO_HERE
TWITTER_CLIENT_SECRET=VALUE_GO_HERE
TWITTER_REDIRECT_URI=http://INTERFACE:PORT/v1/auth/x/callback
TIKTOK_CLIENT_ID=VALUE_GO_HERE
TIKTOK_CLIENT_SECRET=VALUE_GO_HERE
TIKTOK_REDIRECT_URI=http://INTERFACE:PORT/v1/auth/tiktok/callback
API_BASE_URL=http://INTERFACE:PORT