Stuff
This commit is contained in:
parent
996f85589b
commit
a33efadb29
1 changed files with 26 additions and 1 deletions
27
readme.md
27
readme.md
|
@ -1,3 +1,9 @@
|
||||||
|
# Sample Webapplication in Go
|
||||||
|
Sample Webapplication in go, create a kind of skeleton for monolith webapplicaion. Useed to create a small MVP Project.
|
||||||
|
|
||||||
|
## Structur
|
||||||
|
Create (self contained) pkg for a group of pages. The pkg included the View and Go files for the Pages e.g. user pages.
|
||||||
|
|
||||||
## Including Packages
|
## Including Packages
|
||||||
|
|
||||||
* https://github.com/go-chi/chi -> Routing and middelware
|
* https://github.com/go-chi/chi -> Routing and middelware
|
||||||
|
@ -5,6 +11,25 @@
|
||||||
* https://github.com/golang-migrate/migrate -> for mysql migration
|
* https://github.com/golang-migrate/migrate -> for mysql migration
|
||||||
* https://github.com/urfave/cli -> for cli commands like migration
|
* https://github.com/urfave/cli -> for cli commands like migration
|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
## Global Layout
|
||||||
|
The "globale layout" is put arround each response from a pkg web response. It read the response buffer from and use the content to parse the layout.tmpl. It works via middelware
|
||||||
|
|
||||||
|
## JWT-Auth
|
||||||
|
*todo*
|
||||||
|
|
||||||
|
## Migrations
|
||||||
|
Its possitlbe to execute the migrations via `go run ./ migrate`. It execute the migration files in database/migrations/*.sql
|
||||||
|
|
||||||
|
## One Binary
|
||||||
|
Everything (include templaes and migration) can be added in one binary
|
||||||
|
|
||||||
|
## Make commands
|
||||||
|
*todo*
|
||||||
|
|
||||||
|
# Dev
|
||||||
|
|
||||||
|
|
||||||
Test für das entwickeln von Monolith webanwendung mit html gui in go.
|
Test für das entwickeln von Monolith webanwendung mit html gui in go.
|
||||||
|
|
||||||
|
@ -15,7 +40,7 @@ Das layout gibt es einmal zentral und wird per chi middelware reingereicht.
|
||||||
Alles ist in einem binary
|
Alles ist in einem binary
|
||||||
|
|
||||||
|
|
||||||
next steps:
|
# next steps
|
||||||
* conifg per env
|
* conifg per env
|
||||||
* makefile
|
* makefile
|
||||||
* ci/Cd bis docker image bauen
|
* ci/Cd bis docker image bauen
|
Loading…
Reference in a new issue