Skip to content

Commit

Permalink
Cleaning up log path
Browse files Browse the repository at this point in the history
  • Loading branch information
fflorent-01 committed Jun 12, 2023
1 parent 4befbe0 commit 9573e16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env/.local/.django/.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ HOSTNAME=localhost
BACKEND_HOST=jasma-api-server
BACKEND_PORT=8000
MEDIA_ROOT="/backend/media"
LOGS_ROOT="/backend/logs"
LOGS_ROOT= "/backend/logs"
2 changes: 1 addition & 1 deletion backend/django_server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# This is to allows external services though .env file
MEDIA_ROOT = os.getenv('MEDIA_ROOT')
LOGS_ROOT = os.getenv('LOGS_ROOT')
LOGS_ROOT = os.getenv('LOGS_ROOT')

runserver.default_addr = BACKEND_HOST
runserver.default_port = BACKEND_PORT
Expand Down

0 comments on commit 9573e16

Please sign in to comment.