You can see progress on tasks at http://waffle.io/devopsdays/gather-flag
gather-flag
is a web application for organizing open spaces, built with ❤️ by mattstratton in Go.
- Docker 1.12
- Docker Compose 1.8
docker-compose up -d
docker-compose stop
If you need change some source code you can deploy it typing:
docker-compose build
That being said, things should reload on the fly.
This service is used to get information about a topic. It provides the topic title, the description, and other details.
Routes:
- GET - /topics : Get all topics
- POST - /topics : Create topic
- GET - /topics/{id} : Get topic by id
- DELETE - /topics/{id} : Remove topic by id
This service is used to manage user accounts, specifically around login, etc.
Routes
- GET - /accounts : Get all accounts
- POST - /accounts: Create account
- GET - /accounts/{id} : Get account by id
- DELETE - /accounts/{id} : Remove account by id
This service manages rooms, including who has access to them, etc
Routes
- GET - /rooms : Get all rooms
- POST - /rooms : Create new room
- GET - /rooms/{i} : Get room by id
- DELETE - /rooms/{i} : Remove room by id