Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bwhtdev/gotth

Basic app with GoTTH stack
https://github.com/bwhtdev/gotth

air go htmx tailwindcss templ

Last synced: about 1 month ago
JSON representation

Basic app with GoTTH stack

Awesome Lists containing this project

README

        

Basic app with GoTTH stack:
- Go
- Templ
- Tailwind CSS
- HTMX

## Technologies
### Tailwind
https://tailwindcss.com/blog/standalone-cli

## Makefile
This Makefile is designed to simplify common development tasks for your project. It includes targets for building your Go application, watching and building Tailwind CSS, generating templates, and running your development server using Air.

### Targets:
```bash
make tailwind-watch
```
This target watches the ./static/css/input.css file and automatically rebuilds the Tailwind CSS styles whenever changes are detected.

```
make tailwind-build
```
This target minifies the Tailwind CSS styles by running the tailwindcss command.

```
make templ-generate
```
This target generates templates using the templ command.

```
make dev
```
This target runs the development server using Air, which helps in hot-reloading your Go application during development.

```
make build
```
This target orchestrates the building process by executing the tailwind-build, templ-generate, and go build commands sequentially. It creates the binary output in the ./bin/ directory.