Slurp'it is a container-based platform and therefore it's really easy to switch from Production to Acceptance 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 Acceptance 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:acc
slurpit-warehouse:
image: slurpit/warehouse:acc
slurpit-scanner:
image: slurpit/scanner:acc
slurpit-scraper:
image: slurpit/scraper:acc
slurpit-retriever:
image: slurpit/retriever:acc
