forked from activist-org/activist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dev
More file actions
28 lines (23 loc) · 667 Bytes
/
.env.dev
File metadata and controls
28 lines (23 loc) · 667 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
ENVIRONMENT='development'
FRONTEND_PORT="3000"
VITE_FRONTEND_URL="http://localhost:3000"
VITE_BACKEND_URL="http://localhost:8000"
VITE_API_URL="http://localhost:8000/v1"
ADMIN_PATH="admin/"
BACKEND_PORT="8000"
DJANGO_ALLOWED_HOSTS="localhost *"
DJANGO_CSRF_TRUSTED_ORIGINS="http://localhost"
# DB port should always be set to 5432.
DATABASE_PORT="5432"
DATABASE_HOST=db
DATABASE_NAME="activist"
DATABASE_USER="postgres"
DATABASE_PASSWORD="postgres"
SECRET_KEY='secret'
DEBUG='1'
ACTIVIST_EMAIL="noreply@activist.org"
EMAIL_HOST="smtp.activist.org"
EMAIL_PORT="587"
EMAIL_HOST_USER="activist@activist.org"
EMAIL_HOST_PASSWORD="activist123!?"
EMAIL_USE_TLS="True"