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 #36 Issues working with Building_Footprints_join_Building_3D_EPSG_26985 sample dataset #40

Merged
merged 1 commit into from
Sep 4, 2024
Merged
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
2 changes: 1 addition & 1 deletion backend/scripts/celery-reload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# using nodemon to be able to detect changes in the mounted volumes
# the --legacy-watch is needed
# other python solutions were not working properly
nodemon -e py --legacy-watch --exec ./scripts/celery.sh
nodemon -e py --legacy-watch --exec /celery.sh
19 changes: 12 additions & 7 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,17 @@ services:
restart: "no"
ports:
- "8888:8888"
volumes:
- ./backend/:/app
# uncomment to mount the backend folder as app for development
# volumes:
# - ./backend/:/app
# use the -reload command version for development
# command: /start-reload.sh
# command: sleep infinity # Infinite loop to keep container alive doing nothing
build:
context: ./backend
args:
INSTALL_DEV: ${INSTALL_DEV-true}
# command: sleep infinity # Infinite loop to keep container alive doing nothing
command: /start-reload.sh

environment:
SMTP_HOST: "mailcatcher"
SMTP_PORT: "1025"
Expand All @@ -70,9 +73,11 @@ services:

worker:
restart: "no"
volumes:
- ./backend/:/app
command: /celery-reload.sh
# uncomment to mount the backend folder as app for development
# volumes:
# - ./backend/:/app
# use the -reload command version for development
# command: /celery-reload.sh
environment:
SMTP_HOST: "mailcatcher"
SMTP_PORT: "1025"
Expand Down