- PHP 7.2 or greater
- Composer
- MySQL
- Clone repository to your computer with
git clone https://github.com/kthackais/join && cd join
- Install PHP and MySQL if needed, run
composer install
- Run
mysql < db/db.sql
to create the database - Create user and set the password with
CREATE USER '[USERNAME]'@'localhost' IDENTIFIED BY '[PASSWORD]';
- Give privileges to the user with
GRANT ALL PRIVILEGES ON team.* TO '[USERNAME]'@'localhost'; FLUSH PRIVILEGES;
- Move
.env.example
to.env
and modify it with the corresponding[USERNAME]
and[PASSWORD]
- Update the Sendgrid API key in
.env
with your own
MIT © KTH Artificial Intelligence Society