No description
  • Nix 51.1%
  • Just 24.2%
  • Go 14.4%
  • Dockerfile 9.1%
  • templ 1.2%
Find a file
Fergus Molloy 6fe23ff8ff
All checks were successful
Build and Test / Build (push) Successful in 39s
Build and Test / Lint (push) Successful in 1m15s
Build and Test / Test (push) Successful in 1m16s
add templ example
2026-03-04 23:04:58 +00:00
.forgejo/workflows fix pipeline? 2026-03-04 11:38:39 +00:00
cmd/warehouse add templ example 2026-03-04 23:04:58 +00:00
db add templ example 2026-03-04 23:04:58 +00:00
internal/database add sqlc dep and generate some code 2026-03-04 22:53:45 +00:00
.env.example init 2026-03-02 22:32:37 +00:00
.gitignore init 2026-03-02 22:32:37 +00:00
.golangci.yml clean up pipeline and swap makefile for justfile 2026-03-04 09:57:48 +00:00
CLAUDE.md clean up pipeline and swap makefile for justfile 2026-03-04 09:57:48 +00:00
docker-compose.yml add sqlc dep and generate some code 2026-03-04 22:53:45 +00:00
Dockerfile init 2026-03-02 22:32:37 +00:00
flake.lock init 2026-03-02 22:32:37 +00:00
flake.nix add templ example 2026-03-04 23:04:58 +00:00
go.mod add templ example 2026-03-04 23:04:58 +00:00
go.sum add templ example 2026-03-04 23:04:58 +00:00
Justfile add sqlc dep and generate some code 2026-03-04 22:53:45 +00:00
README.md clean up pipeline and swap makefile for justfile 2026-03-04 09:57:48 +00:00
sqlc.yml add sqlc dep and generate some code 2026-03-04 22:53:45 +00:00

Warehouse Stock Management System

A modern stock management system for warehouses built with Go, htmx, and Alpine.js.

Quick Start

# Start the application with Docker Compose
docker compose up

# View logs
docker compose logs

# Access the application
open http://localhost:8080

Documentation

See CLAUDE.md for complete documentation on:

  • Building and running the project
  • Development workflow
  • Testing and code quality
  • Architecture and features

Development

# Run locally
just run

# Run tests
just test

# Run linter
just lint

# Build binary
just build

For more commands, run:

just