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
43 lines (36 loc) · 1.21 KB
/
.env.dev
File metadata and controls
43 lines (36 loc) · 1.21 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
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"
FILESCAN_PORT="9101"
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_BACKEND="django.core.mail.backends.smtp.EmailBackend"
EMAIL_HOST="mailhog"
EMAIL_PORT="1025"
EMAIL_HOST_USER=""
EMAIL_HOST_PASSWORD=""
EMAIL_USE_TLS="False"
NUXT_SESSION_PASSWORD="password-with-at-least-32-characters"
VITE_BACKEND_URL_PROXY="http://backend:8000"
# Security event notifications
INTERNAL_EVENTS_TOKEN="dev-internal-events-token"
ALERTS_BACKEND_TOKEN="dev-internal-events-token"
SECURITY_ALERT_RECIPIENTS="dev-ops@example.com"
SECURITY_ALERT_FROM_EMAIL="alerts@activist.org"
FILESCAN_ALERTS_ENABLED="true"
ALERTS_BACKEND_URL="http://backend:8000/internal/security-events"
FILESCAN_INTERNAL_TOKEN="dev-filescan-internal-token"
FILESCAN_QUARANTINE_TEST_DIR="./quarantine"