-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
42 lines (36 loc) · 1.06 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
# ========================
# Django Configuration
# ========================
PROJECT_NAME=template-backend
DEBUG=True
# ========================
# Database Configuration
# ========================
DB_NAME=testdb
DB_USER=testuser
DB_USER_PASSWORD=testpassword
DB_HOST=backend-mariadb
DB_PORT=3306
# ========================
# Proxy Settings
# ========================
API_URL=http://192.168.1.28:9999/
API_VERSION=v1
HOST_PORT=5566
# ========================
# 3rd Party Configuration
# ========================
# Google CLIENT
# https://developers.google.com/identity/protocols/oauth2
# Callback URL: http://localhost:5566/auth/google/callback/
# ========================
SOCIAL_GOOGLE_CLIENT_ID=376808175534-d6mefo6b1kqih3grjjose2euree2g3cs.apps.googleusercontent.com
SOCIAL_GOOGLE_CLIENT_SECRET=
# ========================
# Microsoft CLIENT
# https://docs.microsoft.com/en-us/graph/auth-register-app-v2
# Callback URL: http://localhost:5566/auth/microsoft/callback/
# ========================
SOCIAL_MICROSOFT_CLIENT_ID=
SOCIAL_MICROSOFT_CLIENT_SECRET=
# ========================