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>
29 lines
459 B
Bash
29 lines
459 B
Bash
# DATABASE
|
|
DB_NAME=piku_test_db
|
|
DB_USER=test
|
|
DB_PASSWORD=password123
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=5433
|
|
|
|
# SSL
|
|
SSL_ENABLED=true
|
|
|
|
# DJANGO
|
|
DEBUG=True
|
|
SECRET_KEY=django-insecure-initial-key
|
|
BACKEND_DOMAIN=127.0.0.1
|
|
BACKEND_PORT=8001
|
|
|
|
# EMAIL
|
|
EMAIL_HOST=127.0.0.1
|
|
EMAIL_PORT=1026
|
|
EMAIL_HOST_USER=
|
|
EMAIL_HOST_PASSWORD=
|
|
FROM_EMAIL="Test <test@pi-ku.app>"
|
|
EMAIL_API_PORT=8026
|
|
|
|
# FRONTEND
|
|
FRONTEND_PORT=5199
|
|
FRONTEND_DOMAIN=127.0.0.1
|
|
VITE_API_URL=https://127.0.0.1:8001
|