Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 689 Bytes

readme.md

File metadata and controls

41 lines (27 loc) · 689 Bytes

Dependency Injection Workshop Project

Do not modify ./src/tests files while working with this project!!!

Initialization

  1. Install project by running command below
npm install
  1. Copy .env.dist file into .env file e.g. by using command below
cp .env.dist .env

How to use

Application is developed in docker environment.

  1. 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
  1. To start development environment run
npm run d-dev
  1. To start integration tests run
npm run d-test-integrations