Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.52 KB

README.md

File metadata and controls

44 lines (32 loc) · 1.52 KB

demo-app

CircleCI

Development

Start the project in 3 steps

  1. Create your local .env file
make .env
  1. Edit the values in .env, if necessary
  2. Start the development environment:
make up

Test the Demo App

Requirements:

Steps:

Useful commands

make up # build & start the containers
make down # stop the containers
make destroy # remove all containers, all volumes, all docker images

make tests # launch all the tests

docker-compose run --rm app yarn watch # watch scss & js changes

docker-compose run --rm app bin/console [cmd] # execute a symfony command
docker-compose run --rm app composer [cmd] # execute a composer command
docker-compose run --rm app yarn [cmd] # execute a yarn command