-
Clone the git repository from the latest commit to MASTER (this is the current stable version)
-
Create a database on your chosen platform
-
create a file called Secrets.php in the models directory (as shown below)
-
copy and paste the following code, replacing the empty strings with your database information
class Secrets
{
static $USERNAME = "";
static $PASSWORD = "";
static $HOST = "";
static $DB_NAME = "";
}
(Note: you may want to add this file to your .gitignore for security reasons)
- start your development server
- on your browser, navigate to setup.php
- after it has finished initialising the database click the link to go the index page
- click the login modal and log in to the system with the default account created by setup.php.
USERNAME: [email protected]
PASSWORD: testpass
(DELETE THIS ACCOUNT AFTER YOU HAVE GAINED ACCESS TO THE SYSTEM FOR SECURITY REASONS)
- all setup steps have been completed, setup the Teams and User accounts according to your needs
(if you encounter issues or would like to contribute, please submit a github issue or submit a pull request)