QA system using Fenix API
To make it work with fenix api you need to follow this steps:
- Go to conf dir
cd conf
- Copy the existing fenixedu-sample.yml to a new one called fenixedu.yml
cp fenixedu-sample.yml fenixedu.yml
- Fill each property according to application details in fenix external applications system - After saving the file, you can run as usual
play run
Configure database
Now, the application just supports mysql
- Run your mysql server
- Create a new empty database
- Create the following environment variables
QA_DB_URL=jdbc:mysql://localhost/[db name]
QA_DB_USER=[user for your db]
QA_DB_PASS=[password for your db]
Enjoy ;)