https://github.com/bitraf/overlord
member database and central api for hackerspace management
https://github.com/bitraf/overlord
Last synced: 9 months ago
JSON representation
member database and central api for hackerspace management
- Host: GitHub
- URL: https://github.com/bitraf/overlord
- Owner: bitraf
- Created: 2014-11-06T12:15:10.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-05T08:07:42.000Z (over 10 years ago)
- Last Synced: 2024-09-08T14:24:55.460Z (almost 2 years ago)
- Language: Go
- Homepage:
- Size: 371 KB
- Stars: 1
- Watchers: 14
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Overlord
Member database and central API for hackerspace management built with [Go](https://golang.org/).
## Building
Install go (https://golang.org/) and do the following:
go build
Start using...
./overlord
Show help for options...
./overlord --help
## Database backend
The database schema is based on the existing p2k12 database to ease the migration.
## Libraries to use
* Command line parser (https://github.com/codegangsta/cli).
* Yaml for configuration (https://github.com/go-yaml/yaml).
* Echo for rest services (https://github.com/labstack/echo).
* Gorm for database to object mapping (https://github.com/jinzhu/gorm).
* Unify the logging into logrus (https://github.com/Sirupsen/logrus).
## TODO
* Configure database driver using the loaded settings.