ictc events

Online web based ICTC events database.

Tools required

Getting started for development

Create Database

Install mysql or mariadb and get into its root shell. Then execute:

mysql> create database dbms_project; -- Create the new database
mysql> create user 'dbms_project'@'localhost' identified by 'ThePassword'; -- Creates the user
mysql> grant all on dbms_project.* to 'dbms_project'@'localhost'; -- Gives all the privileges to the new user on the newly created database

Build and run backend

Make sure you have setup database as described above.

Build and run frontend

Getting started for production

[TODO]

Authors