This is my boilerplate for a Go http server project. Feedback and suggestions are encouraged!
Go to file
Jeffrey Paul 80c2a9c39c
continuous-integration/drone/push Build is passing Details
update readme
2020-09-30 01:39:19 -07:00
cmd/httpd fixed gitignore which mistakenly omitted the cmd dir 2020-09-30 01:28:06 -07:00
httpserver rename misnamed file (handleadmin->handlelogin) 2020-09-30 01:32:28 -07:00
.drone.yml initial 2020-09-29 23:35:07 -07:00
.gitignore fixed gitignore which mistakenly omitted the cmd dir 2020-09-30 01:28:06 -07:00
Dockerfile fixed gitignore which mistakenly omitted the cmd dir 2020-09-30 01:28:06 -07:00
LICENSE initial 2020-09-29 23:35:07 -07:00
Makefile middlewares all now have the same signature 2020-09-30 01:18:30 -07:00
README.md update readme 2020-09-30 01:39:19 -07:00
go.mod now does logging and auth middleware 2020-09-30 00:48:56 -07:00
go.sum now does logging and auth middleware 2020-09-30 00:48:56 -07:00

README.md

gohttpserver

Build Status

This is my boilerplate for a go HTTP server, designed to be a starting point template for new projects.

Many ideas are taken from Mat Ryer's talk titled "How I Write HTTP Web Services after Eight Years" at GopherCon 2019, seen here:

https://www.youtube.com/watch?v=rWBSMsLG8po

Contributing

Contributions are welcome! Please send me an email if you'd like an account on this server to submit PRs.

Alternately, even just feedback is great: sneak@sneak.berlin

Features

  • Basic logging middleware
  • Stub Authentication middleware
  • Helper functions for encoding/decoding json
  • Healthcheck route
  • No global state

TODO

  • Database Boilerplate
  • sync.Once example for precompiling templates
  • Bundling Static Assets Into Binary
  • Metrics Endpoint / Request Statistic Aggregation

Author

License

WTFPL (aka public domain):

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                    Version 2, December 2004

 Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>

 Everyone is permitted to copy and distribute verbatim or modified
 copies of this license document, and changing it is allowed as long
 as the name is changed.

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. You just DO WHAT THE FUCK YOU WANT TO.