Launch your server and read the instructions.
- Php ^8.0 http://php.net/manual/fr/install.php;
- Composer https://getcomposer.org/download/;
-
Clone the current repository.
-
Create a branch correctly named as "LASTNAME_FIRSTNAME".
-
Move into the directory and create an
.env.local
file. This one is not committed to the shared repository. Setdb_name
to check_itw. -
Execute the following commands in your working folder to install the project:
# Install dependencies
composer install
# Create 'check_itw' DB
php bin/console d:d:c
# Execute migrations and create tables
php bin/console d:m:m
Reminder: Don't use composer update to avoid problem
Assets are directly into public/ directory, we will not use Webpack with this checkpoint
Launch the server with the command below and follow the instructions on the homepage /
;
$ symfony server:start