A Go web framework with user authentication, CSRF protection, templating, config handling, and simple migrations out of the box
Go to file
2023-04-06 09:55:56 -05:00
app Fix scheduler by adding a wait group 2023-04-06 09:55:56 -05:00
config Prepare config option to enable auto migrations 2023-02-13 23:28:36 -06:00
controllers Add remember me functionality, handle both types of sessions appropriately 2023-04-06 08:56:48 -05:00
database Add checks to skip table and column creation if they already exist 2023-02-17 19:01:59 -06:00
models Fix wrong query for clearing 6-hour old sessions 2023-04-06 09:35:53 -05:00
routes Change log message 2023-03-06 21:10:09 -06:00
security Remove unneeded comments 2023-02-15 19:13:05 -06:00
static/css Add default theme and apply to pages 2023-03-06 12:44:20 -06:00
templates Properly set the name of the checkbox for parsing 2023-04-06 09:31:12 -05:00
templating Embed static and templates folder when compiling, RenderTemplate now renders and serves from the embedded filesystem 2023-02-05 12:46:47 -06:00
.gitignore Add more to .gitignore 2023-03-06 21:23:56 -06:00
env_example.json AutoMigrate changed to DbAutoMigrate to match correctly 2023-02-14 08:31:13 -06:00
go.mod Update experimental crypto library 2023-03-06 21:08:56 -06:00
go.sum Update experimental crypto library 2023-03-06 21:08:56 -06:00
LICENSE Add license 2023-01-07 22:08:25 -06:00
main.go Initial clear old sessions implementation 2023-04-04 14:37:36 -05:00
README.md Update README.md 2023-03-06 21:34:12 -06:00

GoWeb 🌐

GoWeb is a simple Go web framework that aims to only use the standard library. The overall file structure and development flow is inspired by larger frameworks like Laravel. It is partially ready for smaller projects if you are fine with getting your hands dirty, but I plan on having it ready to go for more serious projects when it hits version 2.0.


Current features 🚀

  • Routing/controllers
  • Templating
  • Simple database migration system
  • CSRF protection
  • Minimal user login/registration + sessions
  • Config file handling
  • Entire website compiles into a single binary (~10mb) (excluding env.json)
  • Minimal dependencies (just standard library, postgres driver, and experimental package for bcrypt)

When to use 🙂

  • You need to build a dynamic web application with persistent data
  • You need to build a dynamic website using Go and need a good starting point
  • You need to build an API in Go and don't know where to start
  • Pretty much any use-case where you would use Laravel, Django, or Flask

When not to use 🙃

  • You need a static website (see Hugo)
  • You need a simple blog (see Hugo)
  • You need a simple site for your projects' documentation (see Hugo)

How to use 🤔

  1. Clone
  2. Run go get to install dependencies
  3. Copy env_example.json to env.json and fill in the values
  4. Run go run main.go to start the server
  5. Start building your app!

How to contribute 👨‍💻

  • Open an issue on GitHub if you find a bug or have a feature request.
  • Email me a patch if you want to contribute code.
    • Please include a good description of what the patch does and why it is needed, also include how you want to be credited in the commit message.

License and disclaimer 😤

  • You are free to use this project under the terms of the MIT license. See LICENSE for more details.
  • You and you alone are responsible for the security and everything else regarding your application.
  • It is not required, but I ask that when you use this project you give me credit by linking to this repository.
  • I also ask that when releasing self-hosted or other end-user applications that you release it under the GPLv3 license. This too is not required, but I would appreciate it.