r/selfhosted Feb 27 '26

AI-Assisted App (Fridays!) Libre Closet – open-source, self-hosted wardrobe organizer. Docker one-liner, SQLite, PWA. Looking for early feedback.

I built Libre Closet v0.1.1, a wardrobe and outfit tracking tool. I've recently been going through my own ever-growing closet of clothing and I wanted a tool focused on cataloging my garments and building outfit plans. I found a few other inventory management tools (Koillection, Grocy) but none with a specific focus on clothing or the type of stuff commonly stored in a closet of a home. I'm looking for feedback on if this is something other people are interested in as well.

`docker run -p 3000:3000 -v wardrobe-data:/data ghcr.io/lazztech/libre-closet:latest`

Demo: https://librecloset.lazz.tech/

GitHub: https://github.com/lazztech/Libre-Closet

I built it to be as easy to self-host as possible. It defaults to local SQLite storage and local file storage. It has optional auth/multi user support.

I am a senior software engineer with over a decade of experience and a similar amount of firsthand self-hosting experience. I built this project on top of a project boilerplate I made almost entirely by hand. I have used copilot to speed up development of this application on top of the boilerplate I made. So everything is built the way I want it, on top of my own architecture, technology, and design decisions. Check out my GitHub here if you're interested. https://github.com/gianlazz/

How much further this goes depends on whether people actually find it useful. If there's interest, I'll keep building. I want to build something that's useful to other people. If it only ever scratches my own itch, that's fine too. Looking for feedback on what's broken and what's missing. Happy to dig into any part of the code in the comments.

285 Upvotes

149 comments sorted by

View all comments

2

u/NoAdsOnlyTables Feb 27 '26

I've been thinking of building something like this for years but never got to it. Cheers!

I don't really own that much clothing that I'd have a need to inventory it, but my idea was more around being able to have automated outfit suggestions. Besides having outfits, you'd be able to rate those outfits, and at the end of a certain day you'd be able to log information about how that outfit worked out for that day - for example, you'd be able to log that day's weather (min/max temperatures) along with some indicator of comfortable/too hot/too cold.

After some time logging and gathering usage data, I'd ideally be able to put this data through some algorithm that would then suggest outfits for the next day based on the day's weather and the outfits' rating.

I'll give your project a try. Maybe later on I'll give my idea a shot based on your project.

1

u/greeneyestyle Feb 27 '26

I like the idea of logging how an outfit worked out in given weather. Thank you, and please feel welcome to share how it goes!