-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 729 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (25 loc) · 729 Bytes
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
# Database
DATABASE_URL="postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=public"
DB_HOST="localhost"
DB_PORT=5432
DB_USER="your_db_user"
DB_PASSWORD="your_db_password"
DB_DATABASE="your_db_name"
DB_ADAPTER="pg"
# App
TENANT_ID=1
PORT=9011
# Microservices
AUTH_SERVICE_HOST=localhost
AUTH_SERVICE_PORT=9012
# Auth / API
X_API_KEY="your_api_key"
CLIENT_SECRET="your_client_secret"
CLIENT_ID="your_client_id"
APP_ID="your_app_id"
JWT_SECRET="your_jwt_secret"
# Google OAuth
GOOGLE_CLIENT_ID=your_google_client_id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_CALLBACK_URL=http://localhost:9010/v1/auth/google/callback
FRONTEND_AUTH_CALLBACK_URL=http://localhost:3000/auth/social-callback