docker compose up -d postgresUses config/api settings: host 127.0.0.1, port 5432, user postgres, password postgres, database remora_local.
ENV=local go run ./cmd/migrationReads config/migration and runs migrations + seeds against remora_local. If the database does not exist, it is created first (connects to postgres then CREATE DATABASE remora_local).
ENV=local go run ./cmd/apiOr build then run:
make build app=api
./remora_apiAPI listens on http://127.0.0.1:8080. Example:
curl http://127.0.0.1:8080/users/{user-uuid}Requires existing user data (from seed or manual insert).
always use the latest version of go, now is 1.24.4
brew intall gofor Conventional commits command usage
brew install cocogittogo install toolafter go install tool, install lefthook git hooks
lefthook install