Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 582 Bytes

README.md

File metadata and controls

50 lines (39 loc) · 582 Bytes

Go and htmx example

First attempt and creating a simple go backend.

MakeFile

run all make commands with clean tests

make all build

build the application

make build

run the application

make run

Create DB container

make docker-run

Shutdown DB container

make docker-down

live reload the application

make watch

run the test suite

make test

clean up binary from the last build

make clean

create migration

migrate create -ext sql -dir migrations create_tasks_table