https://github.com/anucha-tk/go_basic_webapp
golang http web server
https://github.com/anucha-tk/go_basic_webapp
Last synced: 9 months ago
JSON representation
golang http web server
- Host: GitHub
- URL: https://github.com/anucha-tk/go_basic_webapp
- Owner: anucha-tk
- Created: 2024-06-13T04:37:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-15T06:27:49.000Z (about 2 years ago)
- Last Synced: 2024-12-27T01:12:22.502Z (over 1 year ago)
- Language: Go
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GO BASIC WEBAPP
http server-side render page and HTMX
- [GO BASIC WEBAPP](#go-basic-webapp)
- [Techs and Tools](#techs-and-tools)
- [How to run dev](#how-to-run-dev)
- [Port error](#port-error)
## Techs and Tools
- http
- router
- chi
- middlewares
- CSRF
- logger
- session
- templates
- html(htmx)
- cache the templates
- css
- tailwindcss(CDN)
- infrastructure
- commitlint and linter
- simple htmx
- get time every 5 sec
## How to run dev
```bash
make dev
```
## Port error
```bash
# find open port
lsof -i :[port number]
# kill
kill -9 [PID]
```