FOR A CLEAN INSTALL USE THE FOLLOWINF INSTRUCTIONS
- Clone the project from here
- install the dependencies using the following orders:
composer installnpm install - prepare the database configurations in .env file
- run the migrations:
symfony console doctrine:migrations:migrate --no-interaction - run fixtures, in order to have some initial data:
symfony console doctrine:fixtures:load --no-interaction - now you can run the symfony's server to work with app:
symfony server:start-- note that symfony CLI must be installed to run the local server.