You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 8, 2019. It is now read-only.
Arves100 edited this page Nov 28, 2018
·
6 revisions
Requirements
CMake 3.1+
Linux/FreeBSD: Any compiler that works with C++11 (GCC 4.9+, CLang 4.0+)
Windows: Visual Studio 2015+
A MySQL or MariaDB server (optional but recommended,
Building
Clone the repository (Don't forget to clone the submodules with git submodule update --force --init --recursive
Use cmake to generate the project
Compile
Database setup (Only for MariaDB or MySQL)
Create a new database for the server, and a user that's able to access it.
(CREATE DATABASE retrospy; GRANT ALL PRIVILEGES ON retrospy.* TO 'retrospy'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; FLUSH PRIVILEGES;)
Then, drop this SQL file into the newly created database.