No description
Find a file
2024-06-08 22:46:37 +02:00
bootstrap added theme switcher 2024-06-08 22:46:37 +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 asset view helper 2024-06-08 11:20:22 +02:00
validate fixed makefile 2024-06-08 21:59:00 +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 Merge as a pure function on validate 2024-06-08 09:52:30 +02:00
go.sum Merge as a pure function on validate 2024-06-08 09:52:30 +02:00
install.go fixed installer 2024-06-07 11:03:09 +02:00
README.md updated README 2024-06-08 11:02:51 +02:00

GOTHKIT

NOT READY (YET)

Installation

go install github.com/anthdm/gothkit@master

After installation you can create a new project by running:

gothkit [myprojectname]

Navigate to your project and start the development server:

cd [myprojectname]

make dev

Getting started

Hot reloading the browser

Hot reloading is configured by default, the only thing left to do is watching for changes to your assets by running the following command:

make assets

Migrations

Create a new migration

make db-mig add_user_table

Migrate the database

make db-up

Reset the database

make db-reset

Seed the database

make db-seed