Welcome on the Bilemo Frontend app ! This app is the Frontend part of the Bilemo Api
- PHP 7.3
- Mysql
- Apache
- Symfony
- Doctrine
- csa/guzzle-bundle
- jms/serializer-bundle
Before you install the project, go to the Facebook Developers site and sign in.Then go to your space here and create a new app.
git clone https://github.com/Thibok/Bilemo.git
For fb_client_id and fb_client_secret ask during the composer installation, you can find your app Id in your Facebook Developers Dashboard and for secret go to Settings, General and display your secret key
composer install
php bin/console doctrine:database:create
php bin/console doctrine:schema:update --force
Now you can start your server with this :
php bin/console server:startAnd go on the local address !
If you need run tests :
php bin/console doctrine:database:create --env=test
php bin/console doctrine:schema:update --force --env=test
vendor/bin/phpunit
If you want to use production environment, don't forget :
php bin/console cache:clear --env="prod"