This repository is the back-end part of : https://github.com/Mow69/BlablamovieApplication. (Thanks to the omdbapi owners to let me use their API from http://www.omdbapi.com/.)
-
Install the dependencies with Composer :
composer install
-
Connect to db with the environment variables : Create a file .env.local Add the next variables to the .env.local :
DATABASE_URL
-
Create db and tables:
php app/console doctrine:migrations:migrate
-
Create users in db:
php bin/console doctrine:fixtures:load
-
Run application:
php app/console server:run