- Create your local
.env
file
make .env
- Edit the values in
.env
, if necessary - Start the development environment:
make up
Requirements:
- You have a PIM developer sandbox
Steps:
- Create a public url for your app
- Register your test app to receive the credentials
- Update
AKENEO_CLIENT_ID
&AKENEO_CLIENT_SECRET
in.env
with the credentials, then redo amake up
to take into account these new environment variables - Connect your app
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