Skip to content

The purpose of the Demo App is to test the App-Connect experience.

License

Notifications You must be signed in to change notification settings

akeneo/demo-app

Repository files navigation

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:

  • 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 a make up to take into account these new environment variables
  • Connect your app

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