A web application for backpackers to catalog gear and plan packs. Track item weights, organize equipment into packs, and share your setups.
- Go 1.22 or higher
- SQLite (included with most systems)
git clone <repository-url>
cd carryless
go mod download
go build -o carryless ../carrylessThe application runs on http://localhost:8080 by default.
Set these environment variables if needed:
PORT=3000 # Change port (default: 8080)
DATABASE_PATH=/path/to/database.db # Database location (default: carryless.db)For email notifications (optional):
MAILGUN_DOMAIN=your-domain.com
MAILGUN_API_KEY=your-api-key- Create an account at http://localhost:8080/register
- Add your gear to the inventory
- Create packs and add items from your inventory
- Share packs publicly or keep them private
The database is created automatically on first run.



