Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.37 KB

README.md

File metadata and controls

52 lines (35 loc) · 1.37 KB

Inscriptions Gamers Assembly

Registration management tools for Gamers Assembly

Requirements

Installation / Update

$ composer create-project futurolan/inscriptions-gamers-assembly

Configuration

Create a file name '.env.local' in project root (inscriptions-gamers-assembly/). This file will not be overwrite on update.

# Symfony
APP_ENV=prod
APP_SECRET=<secret>

# Google API
OAUTH_GOOGLE_CLIENT_ID=<your google oauth id>
OAUTH_GOOGLE_CLIENT_SECRET=<your google oauth secret>

# Weezevent
WEEZEVENT_API_KEY=<weezevent api key>
WEEZEVENT_USERNAME=<weezevent username>
WEEZEVENT_PASSWORD=<weezevent password>

# MySQL Database
DATABASE_URL=mysql://user:[email protected]:3306/database

# Administrator
[email protected]

Database initialisation

$ bin/console doctrine:migrations:migrate

Webserver configuration

Please refer to Symfony 4 documentation on how to properly configure your web server : https://symfony.com/doc/current/setup/web_server_configuration.html