Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivan3bx/go-tailwind
Skeletal project with Go + Gin + Tailwind
https://github.com/ivan3bx/go-tailwind
esbuild gin-gonic golang tailwindcss template-project
Last synced: 27 days ago
JSON representation
Skeletal project with Go + Gin + Tailwind
- Host: GitHub
- URL: https://github.com/ivan3bx/go-tailwind
- Owner: ivan3bx
- License: mit
- Created: 2023-04-27T04:48:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-16T06:35:28.000Z (about 2 months ago)
- Last Synced: 2024-09-28T18:20:54.420Z (about 1 month ago)
- Topics: esbuild, gin-gonic, golang, tailwindcss, template-project
- Language: CSS
- Homepage:
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go + Tailwind
This is a starting point for a simple Go application with the following traits:
- Gin web application
- Stimulus JS
- Tailwind CSS
- Procfile (for running a dev server)The Procfile relies on 'gowatch' to reload the app server, and runs both tailwind
and esbuild to rebuild assets on the fly.## Bootstrap
```bash
# Install gowatch for app reloading
go install github.com/silenceper/gowatch@latest# NPM dependencies for tailwind + esbuild
yarn install# start server
foreman start
```## TODO
- Add configuration options
- Add Makefile (for builds)
- Add Dockerfile