- Install project by running command below
npm install
- Copy
.env.dist
file into.env
file e.g. by using command below
cp .env.dist .env
Application is developed in docker environment.
- Stop and clear your docker environment before running scripts below to avoid possible issues
docker kill $(docker ps -q)
docker rm $(docker ps -a -q)
docker system prune -a --force
- To start development environment run
npm run d-dev
- To start integration tests run
npm run d-test-integrations