generated from teamlamsta/internship-task-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.example
70 lines (52 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Django Secret Key
# Generate a secure random key and keep it secret
SECRET_KEY=any_random_key
# Debug Mode
DEBUG=True
ENVIRONMENT=development
# Admin URL
# URL path for the Django admin interface
ADMIN_URL=admin/
# Google Client ID
# Client ID for Google authentication integration
GOOGLE_CLIENT_ID=your_google_client_id_here
# Google Client Secret
# Client Secret for Google authentication integration
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
# Email Host
# Hostname of the email server
EMAIL_HOST=smtp.gmail.com
# Email Host User
# Username for authenticating with the email server
# Email Host Password
# Password for authenticating with the email server
EMAIL_HOST_PASSWORD=strong_password
## Email Port
## Port number for the email server
#EMAIL_PORT=111
# Database Name
# Name of the database
POSTGRES_DB=db_name
# Database User
# Username for authenticating with the database
POSTGRES_USER=db_user_name
# Database Password
# Password for authenticating with the database
POSTGRES_PASSWORD=a_strong_db_password
# Database Host
# Hostname of the database server
DB_HOST=db
# Database Port
# Port number of the database server
DB_PORT=5432
# Media Base URL
# Base URL for serving media files
MEDIA_BASE_URL=http://localhost:3000
# PG admin
PGADMIN_DEFAULT_PASSWORD=strong_password
# django
DJANGO_SUPERUSER_NAME=admin
DJANGO_SUPERUSER_PASSWORD=strong_password