mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 00:56:34 +00:00
48b6a06571
* feat: add s3 storage for media * refactor: update letter decryption test to look for key request properties * fix: update db url to be ipv4 for ssl context match * ci: output backend logs to the console * ci: unset email host creds for local testing --------- Co-authored-by: ramvignesh-b <ramvignesh-b@github.com>
35 lines
535 B
Bash
35 lines
535 B
Bash
# DATABASE
|
|
DB_NAME=piku
|
|
DB_USER=user
|
|
DB_PASSWORD=password123
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=5432
|
|
|
|
# SSL
|
|
SSL_ENABLED=true
|
|
S3_ENABLED=false
|
|
|
|
# DJANGO
|
|
DEBUG=True
|
|
SECRET_KEY=django-secret-key
|
|
BACKEND_DOMAIN=127.0.0.1
|
|
BACKEND_PORT=8000
|
|
# S3
|
|
R2_ACCESS_KEY_ID=
|
|
R2_SECRET_ACCESS_KEY=
|
|
R2_REGION_NAME=
|
|
R2_ENDPOINT_URL=
|
|
R2_PUBLIC_URL=
|
|
|
|
# EMAIL
|
|
EMAIL_HOST=127.0.0.1
|
|
EMAIL_PORT=1025
|
|
EMAIL_HOST_USER=
|
|
EMAIL_HOST_PASSWORD=
|
|
FROM_EMAIL="Pi Ku <no-reply@test.com>"
|
|
|
|
# FRONTEND
|
|
FRONTEND_PORT=5173
|
|
FRONTEND_DOMAIN=127.0.0.1
|
|
VITE_API_URL=https://127.0.0.1:8000
|