├── .air.toml ├── .gitignore ├── Procfile ├── README.md ├── assets └── icons │ ├── close.png │ ├── deleted.png │ ├── done.png │ ├── edit.svg │ └── trash.svg ├── bin └── app ├── db └── db.go ├── go.mod ├── go.sum ├── handlers.go ├── helpers └── helpers.go ├── main.go ├── models └── models.go ├── routes.go ├── templates ├── category.html ├── design.html ├── footer.html ├── header.html ├── history.html ├── home.html ├── item.html └── list.html └── tmp └── build-errors.log /.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/.air.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/README.md -------------------------------------------------------------------------------- /assets/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/assets/icons/close.png -------------------------------------------------------------------------------- /assets/icons/deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/assets/icons/deleted.png -------------------------------------------------------------------------------- /assets/icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/assets/icons/done.png -------------------------------------------------------------------------------- /assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/assets/icons/edit.svg -------------------------------------------------------------------------------- /assets/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/assets/icons/trash.svg -------------------------------------------------------------------------------- /bin/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/bin/app -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/db/db.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/go.sum -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/handlers.go -------------------------------------------------------------------------------- /helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/helpers/helpers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/main.go -------------------------------------------------------------------------------- /models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/models/models.go -------------------------------------------------------------------------------- /routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/routes.go -------------------------------------------------------------------------------- /templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/category.html -------------------------------------------------------------------------------- /templates/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/design.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/header.html -------------------------------------------------------------------------------- /templates/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/history.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/item.html -------------------------------------------------------------------------------- /templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/templates/list.html -------------------------------------------------------------------------------- /tmp/build-errors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diazmartinx/go-webapp/HEAD/tmp/build-errors.log --------------------------------------------------------------------------------