Update scripts

This commit is contained in:
Keannu Bernasol 2024-11-27 00:49:20 +08:00
parent 52d74de4fc
commit 463e33d219
3 changed files with 4 additions and 3 deletions

View file

@ -10,6 +10,8 @@ services:
environment: environment:
- PYTHONBUFFERED=1 - PYTHONBUFFERED=1
volumes: volumes:
# File Watcher is broken in Windows Docker since Docker does not notify container about any file changes you make from Windows
# If running on Windows, use a shared volume instead of bind mount
- .:/app - .:/app
# SMTP Server # SMTP Server

View file

@ -94,7 +94,7 @@ class PDFWatcher:
def run(self): def run(self):
event_handler = PDFHandler() event_handler = PDFHandler()
watch_directory = f"{MEDIA_ROOT}/uploads" watch_directory = os.path.join(MEDIA_ROOT, "uploads")
self.observer.schedule( self.observer.schedule(
event_handler, watch_directory, recursive=True) event_handler, watch_directory, recursive=True)

View file

@ -8,10 +8,9 @@ if [ ! -d "static" ]; then
echo "Generating static files" echo "Generating static files"
python manage.py collectstatic --noinput python manage.py collectstatic --noinput
fi fi
if [ "$DEBUG" = 'True' ]; then
tmux new-session -d -s "API File Watcher" "cd /app/docmanager_backend && python manage.py start_watcher" tmux new-session -d -s "API File Watcher" "cd /app/docmanager_backend && python manage.py start_watcher"
if [ "$DEBUG" = 'True' ]; then
python manage.py runserver "0.0.0.0:8000" python manage.py runserver "0.0.0.0:8000"
else else
tmux new-session -d -s "API File Watcher" "cd docmanager_backend && python manage.py start_watcher"
gunicorn --workers 8 --bind 0.0.0.0:8000 config.wsgi:application gunicorn --workers 8 --bind 0.0.0.0:8000 config.wsgi:application
fi fi