Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix development #105

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .dev.env
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ DJANGO_CAS_URL_PREFIX="" # URL prefix for the CAS server. Should be empty for de
DJANGO_CAS_PORT=8080 # Port for the CAS server. Should be 8080 if DJANGO_DOMAIN_NAME is localhost
DJANGO_DB_ENGINE=django.db.backends.sqlite3 # Database engine
DJANGO_REDIS_HOST=${REDIS_IP} # Redis configuration
DJANGO_REDIS_PORT=${REDIS_PORT}
```
DJANGO_REDIS_PORT=${REDIS_PORT}
27 changes: 19 additions & 8 deletions .env
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be present in the repo.

Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
# Default values
PUID=1000
PGID=1000
TZ="Europe/Brussels"
TZ=Europe/Brussels

DATADIR="./data"
# File directories
DATADIR=./data # Directory to store container data
BACKEND_DIR=./backend
FRONTEND_DIR=./frontend
SSL_DIR="${DATADIR}/nginx/ssl" # Directory to store SSL certificates

BACKEND_DIR="./backend"

FRONTEND_DIR="./frontend"

REDIS_IP="192.168.90.10"
# Redis
REDIS_IP=192.168.90.10
REDIS_PORT=6379
REDIS_PASSWORD="oqOsNX1PXGOX5soJtKkw"

# Django
DJANGO_SECRET_KEY=tetet
DJANGO_DEBUG=True # Django debug mode
DJANGO_DOMAIN_NAME=localhost # Domain name for the Django server
DJANGO_CAS_URL_PREFIX="" # URL prefix for the CAS server. Should be empty for development
DJANGO_CAS_PORT=8080 # Port for the CAS server. Should be 8080 if DJANGO_DOMAIN_NAME is localhost
DJANGO_DB_ENGINE=django.db.backends.sqlite3 # Database engine
DJANGO_REDIS_HOST=${REDIS_IP} # Redis configuration
DJANGO_REDIS_PORT=${REDIS_PORT}
Loading