Supercharge your Gen-AI art process. Generate huge numbers of images based on your preferences, artistic directions you wish to explore, and novel routes you didn't even think of. Find models and prompts that work amazingly when combined, and find and filter those which do not.
Core features
- Generations: Generate art using ComfyUI integration.
- Models: Easily find and download AI models for image generation.
- Browse & Catalogue: Browse, search, filter, rate, and tag.
- Advanced Search: Search with quoted phrases for exact matching, full search history with management UI. See Search Documentation.
- Tag System: Hierarchical tag organization with 127+ curated tags, polyhierarchy support, and gallery filtering.
- Bookmarks & Favorites: Save and organize your favorite images into hierarchical categories. Pin important bookmarks, add notes, control privacy, and sort by rating or date. Automatically creates an "Uncategorized" category for easy organization.
- Recommenders: Automatically generate works based on your preferences and use cases. Explore novel combinations / directions.
- Community: Browse and auto-generate based on popular community trends, and other users like you.
- Content Moderation: Automatic content flagging system with risk assessment and admin management tools.
Platforms
- Cloud
- Windows, MacOS, & Linux: Local and browser-based
Join the waiting list to be notified for early access.
Prerequisites
- Python 3.10+
Installation steps:
- Create virtual environment:
virtualenv env/python_venv, and activate it. pip install -r requirements.txt- Create Postgres DB
- Create your
.envfile (see "Environment variables" below) - Run:
make initorpython -m genonaut.db.init
Genonaut uses a two-tier configuration system:
- JSON config files (
config/) - Non-sensitive application configuration - .env files (
env/) - Sensitive credentials and secrets
Setup:
- Copy the example files:
cp env/env.shared.example env/.env.shared cp env/env.location-type.example env/.env.local-dev
- Edit
env/.env.sharedwith your actual credentials - Edit
env/.env.local-devfor development-specific settings
Required Variables (in env/.env.shared):
DB_PASSWORD_ADMIN- Admin user password (full database privileges)DB_PASSWORD_RW- Read/write user password (data operations only)DB_PASSWORD_RO- Read-only user password (select operations only)API_SECRET_KEY- Secret key for JWT tokens and cryptographic operations
Environment Targets:
local-dev- Local developmentlocal-demo- Local demo databaselocal-test- Local test databasecloud-*: 1 for each of the above, but for cloud-hosted environments.cloud-prod- Cloud production
For complete configuration documentation including load order, variable precedence, and adding new environments, see Configuration Documentation.
After configuring environment variables, initialize the database:
make init # main database
make init-demo # demo database
make init-test # test database (truncates & re-seeds with demo fixtures)This creates the necessary database tables and schema. For detailed database documentation including schema details, JSONB usage, and troubleshooting, see Database Documentation
# Start API server
make api-dev # Development database
make api-demo # Demo database
make api-test # Test databaseQuick Access:
- Interactive docs:
http://localhost:8001/docs - Health check:
http://localhost:8001/api/v1/health
For complete API documentation, endpoint details, configuration options, and troubleshooting, see API Documentation.
The React frontend lives in frontend/ and mirrors the API feature set with dashboard, content, recommendation,
settings, and auth placeholder pages.
- Install deps:
cd frontend && npm install - Dev server:
npm run dev - Tests & linting:
npm run test(all tests),npm run test-unit(unit only),npm run lint - Make helpers:
make frontend-dev,make frontend-test,make frontend-build
See Frontend Overview for architecture, commands, and testing notes.
- Flagging: Genonaut includes an automatic content flagging system that detects potentially problematic content based on configurable word lists.
See more: full dev docs
config/- JSON configuration sets that define environment-specific application settings.docs/- Project documentation for developers, testing practices, API usage, and database details.env/- Environment assets including example dotenv files, the local Python virtual environment, and Redis configs.frontend/- Vite-powered frontend application, tests, and related tooling.genonaut/- Core backend source code, including FastAPI services, models, and business logic.infra/- Infrastructure and deployment tooling such as Terraform, Kubernetes, or automation scripts.notes/- Working documentation to manage current, future, and prior tasks; almost all files here are markdown.test/- Additional testing resources and harnesses outside the main backend and frontend test suites.
Genonaut uses a three-tier testing approach: unit tests (no dependencies), database tests, and API integration tests (requires web server running).
Essential Commands
# Quick testing during development
make test-unit # Unit tests only (< 10 seconds)
make test-db # Database tests (30-60 seconds)
make test-api # API integration tests (2-5 minutes)
make frontend-test-unit
make frontend-test-e2e
# Comprehensive testing
make test-all # Run all test suites
# Test database setup
make init-test # Initialize test database
make api-test # Start API server for testingFor detailed testing documentation, setup requirements, troubleshooting, and best practices, see Testing Documentation.
Join our waiting list to be notified about early access!
