An open API service indexing awesome lists of open source software.

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

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]
```