Skip to content

Commit

Permalink
fix: merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut committed May 13, 2024
2 parents c34a7f7 + 6f6aba3 commit ac76138
Show file tree
Hide file tree
Showing 227 changed files with 7,954 additions and 3,055 deletions.
2 changes: 2 additions & 0 deletions .dev.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ TZ=Europe/Brussels
DATA_DIR="./data"
BACKEND_DIR="./backend"
FRONTEND_DIR="./frontend"
DOCS_DIR="./docs"
SSL_DIR="./data/nginx/ssl"

# Redis
REDIS_PORT=6379

# Django
DJANGO_SECRET_KEY=""
DJANGO_ROOT_DIR=""
DJANGO_DEBUG=True
DJANGO_DOMAIN_NAME=localhost
DJANGO_CAS_URL_PREFIX=""
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ frontend/cypress/videos/*
!data/nginx/nginx.dev.conf
!data/nginx/nginx.test.conf
!data/nginx/nginx.prod.conf

docs/.vitepress/dist
docs/.vitepress/cache
2 changes: 2 additions & 0 deletions .prod.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ TZ=Europe/Brussels
DATA_DIR="./data"
BACKEND_DIR="./backend"
FRONTEND_DIR="./frontend"
DOCS_DIR="./docs"
SSL_DIR=""

# Postgress DB
Expand All @@ -20,6 +21,7 @@ REDIS_PORT=6379

# Django
DJANGO_SECRET_KEY=""
DJANGO_ROOT_DIR=""
DJANGO_DEBUG=False
DJANGO_DOMAIN_NAME=""
DJANGO_CAS_URL_PREFIX=""
Expand Down
18 changes: 10 additions & 8 deletions backend/.flake8
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[flake8]

# Ignore unused imports
ignore = F401
# Ignore unused imports; W503 and W504 conflict with each-other
ignore = F401
W504
W503
C901

max-line-length = 125

max-complexity = 10

exclude = .git,
__pycache__,
.venv,
venv,
migrations

exclude = .git,
__pycache__,
.venv,
venv,
migrations
2 changes: 1 addition & 1 deletion backend/api/fixtures/large/large.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion backend/api/fixtures/medium/medium.json

Large diffs are not rendered by default.

Loading

0 comments on commit ac76138

Please sign in to comment.