https://github.com/karantan/go-web
My personal template for building web apps with Go and Elm
https://github.com/karantan/go-web
Last synced: about 2 months ago
JSON representation
My personal template for building web apps with Go and Elm
- Host: GitHub
- URL: https://github.com/karantan/go-web
- Owner: karantan
- License: bsd-3-clause
- Created: 2021-10-07T07:33:57.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-28T13:07:26.000Z (over 3 years ago)
- Last Synced: 2025-02-13T15:53:51.394Z (4 months ago)
- Language: HTML
- Size: 1.83 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-web
My personal template for building web apps with Go and Elm## Development
Start the Postgres DB and connect to it run `make db` or `docker compose up db`. This
will run a docker container with a running postgres service. To connect to it via
terminal type:```
$ pgcli postgres://postgres:secret@localhost:5432/goweb
```## Useful resources
- [Style guideline for Go packages](https://rakyll.org/style-packages/)
- https://github.com/gothinkster/golang-gin-realworld-example-app/
- https://gorm.io/docs/index.html
- https://github.dev/demo-apps/go-gin-apphttps://hoohoo.top/blog/20210530112304-golang-tutorial-introduction-gin-html-template-and-how-integration-with-bootstrap/