Slurp'it is a container-based platform and therefore it's really easy to switch from Production to Development mode. To do this you have to set the relevant container image tag in the docker compose configuration file.
How to run the application in Development mode?
- Open the docker-compose.override.yml file and set, or replace, the image lines like the example below.
- Save the override file.
- Restart the application by running sh down.sh && sh up.sh.
Make sure your override file contains the following:
services:
slurpit-portal:
image: slurpit/portal:dev
slurpit-warehouse:
image: slurpit/warehouse:dev
slurpit-scanner:
image: slurpit/scanner:dev
slurpit-scraper:
image: slurpit/scraper:dev
slurpit-retriever:
image: slurpit/retriever:dev
