diff options
author | xengineering <me@xengineering.eu> | 2022-11-11 19:44:29 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-11-11 19:44:29 +0100 |
commit | 552a0a91f5b8450441e5160e50cca80e368525f4 (patch) | |
tree | 02fe0faeebfee64a6f2d751819453a77dcdd3504 /README.md | |
parent | 053482f2899f6baf9fca996d24cb8fe6a888336c (diff) | |
download | ceres-552a0a91f5b8450441e5160e50cca80e368525f4.tar ceres-552a0a91f5b8450441e5160e50cca80e368525f4.tar.zst ceres-552a0a91f5b8450441e5160e50cca80e368525f4.zip |
Add documenatation for building and running
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -55,6 +55,30 @@ does not need to provide a password. Finally you can quit the MariaDB shell with CTRL + d. +## Build and run Ceres + +If you just cloned the repository it is important to initialize Git submodules +to add dependencies via `git submodule update --init`. + +Then it is time to build and run Ceres for the first time! If your database is +correctly configured and your current user has access rights, it is very simple +to run the server in debug mode: + +``` + make debug +``` + +In addition you can also build the server executable with `make all`. The +result is in the build folder and can be run with: + +``` + ./build/ceres -c config/debug.json +``` + +The used `config/debug.json` config file is only for debugging. If you want to +run it as a server, have a look at the `config/default.json` file. + + [1]: https://xengineering.eu/git/ceres [2]: ./CHANGELOG.md [3]: https://mariadb.com/ |