Advanced Programming II final project, ported to Symfony 7.
This project also uses SQLite and Boostrap 5.3.
For more information regarding the project, please read the logic.md file
Run composer install
to install all required packages
All envirnoment variables are managed using a .env file. In this case, we need to provide the url for the SQLite database, which by default looks like this
DATABASE_URL="sqlite:///%kernel.project_dir%/var/app.db"
Run php bin/console make:migration
to create a database with test data.
For local development, we can use the Symfony binary to run the local server.
Once the binary is installed, run symfony server:start