a booru-style image gallery and organizer.
Built with the Go language and Svelte framework, phoebe is designed for personal image gathering.
- Upload and organize images
- Basic tagging system
- Search and autocomplete based on tags
- Similarity search and duplicate detection using perceptual hash
The easiest way to get started is to use Docker:
docker pull damillora/phoebe
docker run -e POSTGRES_DATABASE=<PostgreSQL DSN> -e AUTH_SECRET=<secret> -e DATA_DIR=/data -e BASE_URL=http://localhost:8080 -p 8080:8080 -v "./data:/data" damillora/phoebe
- PostgreSQL database
phoebe is configured using environment variables:
POSTGRES_DATABASE
: DSN string of Postgres Database, see Gorm documentationAUTH_SECRET
: Secret used to sign JWTsDATA_DIR
: Data directory to store imagesBASE_URL
: Accesible URL of the instanceDISABLE_REGISTRATION
: Optional, disable registration on the instance
phoebe is still in an early stage, but contributions are welcome!
phoebe is licensed under the MIT license.