-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (40 loc) · 1.51 KB
/
Copy path.env.example
File metadata and controls
47 lines (40 loc) · 1.51 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
# API Configuration
ENVIRONMENT=development
HOST=127.0.0.1
PORT=8080
FRONTEND_HOST=http://localhost:3000
AES_MASTER_KEY= # openssl rand -hex 32
# Postgres Configuration
POSTGRES_USER=cloudmesh
POSTGRES_PASSWORD=cloudmeshpassword
POSTGRES_HOST=127.0.0.1
POSTGRES_PORT=5432
POSTGRES_DBNAME=cloudmesh
POSTGRES_SSLMODE=disable
POSTGRES_MAX_CONNECTIONS=10
POSTGRES_MIN_CONNECTIONS=0
POSTGRES_MAX_CONNECTION_LIFETIME=1
POSTGRES_MAX_CONNECTION_IDLE_TIME=30
POSTGRES_HEALTH_CHECK_PERIOD=1
POSTGRES_CONNECTION_TIMEOUT=30
# Redis Configuration
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
REDIS_PASS=cloudmeshpass
REDIS_DB=0
# CookieStore Configuration
COOKIE_STORE_AUTH_KEY= # openssl rand -hex 64
COOKIE_STORE_ENCRYPTION_KEY= # openssl rand -hex 32
# OAuth Configuration
GOOGLE_ID=
GOOGLE_SECRET=
GOOGLE_OAUTH_SCOPES=https://www.googleapis.com/auth/drive.readonly,https://www.googleapis.com/auth/drive,https://www.googleapis.com/auth/drive.file,https://www.googleapis.com/auth/userinfo.profile,https://www.googleapis.com/auth/userinfo.email,openid
GOOGLE_REDIRECT_URI=http://localhost:8080/api/v1/link/google/callback
DROPBOX_ID=
DROPBOX_SECRET=
DROPBOX_OAUTH_SCOPES=account_info.read,files.metadata.read,files.content.write,files.content.read,profile,openid,email
DROPBOX_REDIRECT_URI=http://localhost:8080/api/v1/link/dropbox/callback
MICROSOFT_ID=
MICROSOFT_SECRET=
MICROSOFT_OAUTH_SCOPES=email,Files.Read,Files.Read.All,Files.ReadWrite.All,offline_access,openid,profile,User.Read
MICROSOFT_REDIRECT_URI=http://localhost:8080/api/v1/link/microsoft/callback