Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 984 Bytes

README.md

File metadata and controls

50 lines (33 loc) · 984 Bytes

Gotham Stack Template

This is a simple template which contains a todo app for bootstrapping a new Go web application project. It ues:

Getting Started

  1. Clone this repository.
git clone https://github.com/AlchemillaHQ/gotham-stack.git
  1. Install the dependencies.
go mod download
  1. Create a configuration file.
cp config.example.json config.json
  1. Run the application.
go run main.go

Testing & Building

For both testing and building we use a Makefile. To run the tests:

make test

To build the application:

make build

It should create binary files for some common platforms in the dist/ directory.