Simple website presenting two events (PRET, TNT) hosting by IFMSA CZ with registration system. Part of the implementation is also integration of payment which is handled by CUK exchange system also managed by IFMSA CZ.
- Clone the git repository
- Run
composer install
- Create a database and fill in the access information in
app/config/config.local.neon
(for an example, seeapp/config/config.local.neon.example
) - Setup the database schema by running
bin/console orm:schema-tool:update --force
Do not forget to make directories temp/
and log/
writable.
The simplest way to get started is to start the built-in PHP server in the root directory of your project:
php -S localhost:4000 -t www
Then visit http://localhost:4000
in your browser to see the welcome page.
It is CRITICAL that whole app/
, log/
and temp/
directories are not accessible directly via a web browser. See security warning.
PHP 7.2 or higher.