superkit/README.md
2024-06-08 11:02:51 +02:00

715 B

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