Project 8: Improve an Existing Project
- Link to doc technical requirements
- Symfony Local Web Server or Configure your local server MAMP, WAMP
- PHP 7.3 or more
- MySQL 5.7 or more
-
Copy repository
git clone https://github.com/jucarre/TodoList.git
-
Configure BDD connect on
.env
file -
Install the dependencies
composer install
-
Create database
bin/console doctrine:database:create
-
Migrate database table
bin/console doctrine:schema:create
-
Load fixtures in database
bin/console doctrine:fixtures:load -n
-
Start server
symfony server:start
-
Tests
bin/phpunit or bin/phpunit --coverage-html docs/test-coverage