forked from goffee/todoapp
Sample todo app using Goffe framework
config | ||
events | ||
handlers | ||
middlewares | ||
models | ||
storage | ||
utils | ||
.env-example | ||
.gitignore | ||
go.mod | ||
go.sum | ||
LICENSE | ||
main.go | ||
README.md | ||
register-events.go | ||
register-global-middlewares.go | ||
routes.go | ||
run-auto-migrations.go |
Example Todo App using Goffee framework
This repository contains the code for an example todo app using Goffee framework
How to run locally?
1- Clone the repository
2- Next add your database credentials (mysql) to the .env
file
3- cd
into the project dir and run go mod tidy
to install any missing dependency
4- Run the app using Goffee's cli tool Goffee
goffee run:dev
if Goffee is not installed you can install it by executing the following command
go install git.smarteching.com/goffee/goffee@latest
All routers are defined in the file routes.go
All request controllers are defined in the directory controllers/