Orix is a lightweight, premium CLI scaffolder for modern full-stack projects. Generate production-ready boilerplate for Django, FastAPI, Next.js, React, and Flutter in seconds.
- Multi-framework support: Django, FastAPI, Next.js + Tailwind, React (Vite), Flutter
- Production-ready boilerplate: JWT auth, CORS, proper directory structure
- Docker integration: Multi-stage builds, clean docker-compose.yml
- Interactive CLI: Hybrid flow for humans and CI/CD agents
- Zero placeholders: All generated files are 100% complete and functional
pip install orix
# or
pipx install orixgit clone https://github.com/kryonara/orix
cd orix
pip install -e .orix my-app --framework django --docker --auth --database postgres
cd my-app
python manage.py migrate
python manage.py runserverorixdjango- Django REST Framework with JWT + CORSfastapi- FastAPI with JWT auth + CORSnextjs- Next.js with Tailwind CSS and App Routerreact- React with Vite and auth contextflutter- Flutter with Provider state management
--framework [django|fastapi|nextjs|react|flutter]- Project stack--docker- Generate Docker and docker-compose.yml--auth- Include authentication scaffolding--database [sqlite|postgres]- Database backend (Django/FastAPI)--output-dir- Where to create the project
Install development dependencies:
pip install -e ".[dev]"Run tests:
pytest tests/ -vFormat code:
black .See RELEASING.md for complete build and deployment instructions.
MIT