Skip to content

Commit

Permalink
Merge pull request #40 from geosolutions-it/issue_36
Browse files Browse the repository at this point in the history
Fix #36 Issues working with Building_Footprints_join_Building_3D_EPSG_26985 sample dataset
  • Loading branch information
tdipisa authored Sep 4, 2024
2 parents ae20f0e + 3ada6c2 commit 9c8a067
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
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

0 comments on commit 9c8a067

Please sign in to comment.