https://github.com/peterszarvas94/goth-boilerplate
archived -> https://github.com/peterszarvas94/goat
https://github.com/peterszarvas94/goth-boilerplate
go htmx templ
Last synced: 10 months ago
JSON representation
archived -> https://github.com/peterszarvas94/goat
- Host: GitHub
- URL: https://github.com/peterszarvas94/goth-boilerplate
- Owner: peterszarvas94
- Archived: true
- Created: 2024-02-15T23:00:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-22T19:35:02.000Z (over 1 year ago)
- Last Synced: 2025-01-01T19:47:56.022Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 48.8 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project goth
This repo is archived in favor of [goat](http://github.com/peterszarvas94/goat)
This is a minimalist but somewhat opinionated starter template for building full stack applications
Stack:
- go
- templ
- htmx
- tailwind
- turso db
## Features
- sample pages
- auth
- go's built-in router
- middlewares
- json logger
- env variable parsing
- dark mode (free)
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
## MakeFile
run all make commands with clean tests
```bash
make all build
```
build the application
```bash
make build
```
run the application
```bash
make run
```
run templ codegen
```bash
make templ
```
run tailwind codegen
```bash
make tw
```
live reload the application
```bash
make watch
```
run the test suite
```bash
make test
```
clean up binary from the last build
```bash
make clean
```