screecher-rest-api
Overview
An RESTful API for Screecher. Screecher is a mock social media platform where user can posts screeches.
Prerequisites
Environment Variables
APP_ENV
PORT
Programs, Databases, or Runtime Environments
- Docker
- Docker Compose
- Golang
How to Run
With Docker Compose
docker-compose up
With Docker
docker build -t screecher_rest_api .
docker run -p 8080:5000 screecher_rest_api
Without Docker or Docker Compose
Dev Mode
make install
make dev
Production Mode
make install
make build
make run