Skip to content

Building the app from sources

Benoît edited this page Jan 30, 2018 · 3 revisions

Dependencies

Frontend Dependencies

Frontend depencies are managed with bower.

npm, grunt, bower must be installed

For information related in frontend, see this doc page

Backend Dependencies

Frontend depencies are managed with composer.

Building app

Once dependencies are satisfied, just clone and run the following commands that will build the app:

  composer install
  composer install-assets
  composer dump-translation
  composer build-assets
  php bin/console doctrine:database:create
  php bin/console doctrine:schema:create
  php bin/console doctrine:migrations:migrate
  composer fixtures-dev

Tests

PHPUnit tests can be run through composer:

    composer test
Clone this wiki locally