Metadata-Version: 2.4
Name: ajo-cli
Version: 2.0.0
Summary: Professional Django scaffolder with Cyberpunk TUI
Author-email: zaidejjo <zaidejjodev@gmail.com>
Maintainer-email: zaidejjodev <zaidejjodev@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/zaidejjo/ajo-cli
Project-URL: Repository, https://github.com/zaidejjo/ajo-cli
Project-URL: Documentation, https://github.com/zaidejjo/ajo-cli#readme
Project-URL: Issues, https://github.com/zaidejjo/ajo-cli/issues
Keywords: django,scaffolding,cli,tui,cyberpunk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=13.0.0
Requires-Dist: InquirerPy>=0.3.4
Requires-Dist: python-dotenv>=1.0.0
Dynamic: license-file

# 🚀 AJO - Professional Django Scaffolder

[![PyPI version](https://img.shields.io/pypi/v/ajo.svg)](https://pypi.org/project/ajo/)
[![Python Version](https://img.shields.io/pypi/pyversions/ajo.svg)](https://python.org)
[![AUR Version](https://img.shields.io/aur/version/ajo)](https://aur.archlinux.org/packages/ajo)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

> **AJO** (Advanced Java Orchestrator) - The ultimate Django project generator with Cyberpunk TUI

## ✨ Features

- 🚀 **Lightning Fast** - Powered by `uv` package manager
- 🎨 **Stunning TUI** - Cyberpunk theme with Nerd Font icons
- 🗄️ **Multi-Database** - SQLite, PostgreSQL, MySQL support
- 🐙 **GitHub Integration** - Auto-create repos and push
- 🔄 **CI/CD Ready** - GitHub Actions with Ruff linter
- 📦 **Multiple Apps** - Create unlimited Django apps
- 🔒 **Security First** - Auto .env with SECRET_KEY

## 📦 Installation

### Option 1: pip (Any OS)

```bash
# Install globally
pip install ajo

# Or with uv (recommended)
uv tool install ajo
```

### Option 2: AUR (Arch linux)

```bash
# Install globally
yay -S ajo

# Using paru
paru -S ajo

```




# Create new Django project
ajo

# Inside Django project, run smart commands
ajo
# Then choose from: runserver, makemigrations, migrate, etc.



# completions/ajo.bash
_ajo_completion() {
    local cur=${COMP_WORDS[COMP_CWORD]}
    COMPREPLY=($(compgen -W "help version" -- $cur))
}
complete -F _ajo_completion ajo
