No description
Find a file
2024-06-11 20:59:57 +02:00
bootstrap removed whitespace in .env files 2024-06-11 20:59:57 +02:00
db updated paths 2024-06-06 16:15:35 +02:00
event fixed installer 2024-06-07 11:03:09 +02:00
kit fixed bug where Redirect recursively called itself 2024-06-11 20:58:00 +02:00
validate updated README 2024-06-09 11:16:23 +02:00
view changed view helper 2024-06-08 11:49:34 +02:00
.gitignore install.go 2024-06-06 11:44:55 +02:00
go.mod wip auth 2024-06-11 17:08:06 +02:00
go.sum wip auth 2024-06-11 17:08:06 +02:00
install.go fixed install.go and update kit deps 2024-06-09 20:45:12 +02:00
README.md docs 2024-06-09 20:49:31 +02:00

GOTHKIT

Create interactive applications with Golang, HTMX, and Templ

Table of content

Installation

go install github.com/anthdm/gothkit@master

After installation you can create a new project by running:

gothkit [myprojectname]

You can now navigate to your project:

cd [myprojectname]

Getting started

Application structure

assets

conf

db

events

handlers

types

views

Development server

Run the development server with the following command:

make dev 

Hot reloading the browser

Hot reloading is configured by default when running your application in development.

NOTE: on windows you might need to run make assets to watch for CSS and JS changes in another terminal.

Migrations

Create a new migration

make db-mig add_user_table

Will create a new migration SQL file inside app/db/migrations

Migrate the database

make db-up

Reset the database

make db-reset

Seeds

make db-seed

This command will run the seeds file located at cmd/scripts/seed/main.go

Validations

Testing

Testing handlers

Create a production release

Gothkit will compile your whole application including its assets into a single binary. To build your application for production you can run the following command:

make build

This will create a binary file located at /bin/app_release.

Make sure you also set the correct application environment variable in your .env file.

APP_ENV	= production