https://github.com/organization/libreism
Open source server time viewer written in C++
https://github.com/organization/libreism
boost cmake cpp cxx17 drogon ntp ntp-client server-time standard-time ticketing-clock vue
Last synced: 11 months ago
JSON representation
Open source server time viewer written in C++
- Host: GitHub
- URL: https://github.com/organization/libreism
- Owner: organization
- License: apache-2.0
- Created: 2020-02-29T18:26:57.000Z (about 6 years ago)
- Default Branch: dev
- Last Pushed: 2022-08-23T16:48:42.000Z (over 3 years ago)
- Last Synced: 2025-04-03T06:22:04.603Z (12 months ago)
- Topics: boost, cmake, cpp, cxx17, drogon, ntp, ntp-client, server-time, standard-time, ticketing-clock, vue
- Language: C++
- Homepage: https://time.zvz.be
- Size: 2.05 MB
- Stars: 10
- Watchers: 6
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Libreism
> Open Source Server Time Viewer written in **C++**
[](https://github.com/organization/Libreism/releases/)

[](https://cmake.org/)
[](https://github.com/organization/Libreism/actions)
[](./LICENSE)
## ChangeLog
See [CHANGELOG](./CHANGELOG.md)
## Run with [Docker Compose](https://docs.docker.com/compose/)(Recommendation)
- Build and run all services:
```bash
$ docker-compose up
```
- Re-build specific service:
```bash
$ docker-compose build ${SERVICE_NAME}
```
See [docker-compose.yml](./docker-compose.yml)
## Build - API Server
### Requirement
- C++ 17
- CMake(>=3.15)
- [Boost](https://www.boost.org/)(>=1.66)
- [Drogon](https://github.com/an-tao/drogon)(Git Submodule)
- [JsonCpp](https://github.com/open-source-parsers/jsoncpp)
- libuuid
- OpenSSL
- [TRANTOR](https://github.com/an-tao/trantor)(Git Submodule)
- zlib
More information about Drogon Installation, see [Drogon Wiki](https://github.com/an-tao/drogon/wiki/02-Installation).
### Guide
1. Clone the repository:
```bash
$ git clone --recurse-submodules https://github.com/organization/Libreism.git
```
2. Build the source:
```bash
$ cd Libreism
$ cmake -S . -B build
$ cmake --build build
```
See [How to build a project](https://cliutils.gitlab.io/modern-cmake/chapters/intro/running.html)
## Build - Static Page
See [Libreism Web](./web/README.md)
## License
```text
Copyright 2020 Seungjae Park, Chansol Park, and JellyBrick
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```
Libreism is licensed under the [Apache License 2.0](./LICENSE).