Metadata-Version: 2.4
Name: django-djanbee
Version: 0.1.0
Summary: A free command-line tool to simplify Django project deployment in production environments
Author-email: Djanbee Team <djanbee.team@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Djanbee-team/django-djanbee
Project-URL: Repository, https://github.com/Djanbee-team/django-djanbee
Project-URL: Issues, https://github.com/Djanbee-team/django-djanbee/issues
Project-URL: Documentation, https://github.com/Djanbee-team/django-djanbee#readme
Keywords: django,deployment,nginx,gunicorn,production
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Build Tools
Classifier: Framework :: Django
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django>=3.0
Requires-Dist: gunicorn>=20.0.0
Requires-Dist: python-dotenv
Requires-Dist: click
Dynamic: license-file

# Djanbee

A free command-line tool to simplify Django project deployment in production environments.

## Overview

Djanbee automates the critical configuration steps needed to transition a Django application from development to production. Available through the pip package manager, Djanbee handles server setup, environment configuration, Django settings optimization, and deployment - all from a simple command-line interface.

## Installation

```bash
pip install djanbee
```

## Requirements

- Python 3.6+
- pip
- Django project
- Linux/Ubuntu environment

## Features

Djanbee executes the following deployment tasks in sequence:

### 1. Launch
- Initializes server deployment
- Creates and configures socket files for the Django process with Gunicorn
- Generates optimized Nginx configuration files for serving the application

### 2. Setup
- Automatically locates and validates Django project structure
- Creates isolated Python environment with venv
- Installs all dependencies from requirements.txt

### 3. Configure
- Modifies settings.py to set DEBUG=False
- Configures ALLOWED_HOSTS and security settings
- Sets up database configuration for production use
- Generates secure SECRET_KEY

### 4. Deploy
- Transfers files to production location (/var/www/[domain_name]/)
- Sets appropriate permissions for production environment
- Configures Nginx and Gunicorn for the Django application

### 5. Run
- Executes Django's collectstatic command to gather static files
- Runs database migration commands to set up the database schema

## Server Architecture

Djanbee implements the industry-standard server architecture for Django applications:

```
Client requests → Nginx → Gunicorn → Django application
```

- **Nginx**: Handles client connections, SSL, static files, and acts as a buffer to the internet
- **Gunicorn**: Runs Python/Django code efficiently with multiple workers

## Command Reference

### Basic Command Syntax
```bash
django-djanbee [command] [options]
```

### Commands

| Command    | Description |
|------------|-------------|
| djanbee    | Display help information and available commands |
| launch     | Initialize Django server deployment by setting up Gunicorn socket and Nginx configuration |
| setup      | Create and configure virtual environment and install project dependencies |
| configure  | Modify Django settings.py for production and prepare database configuration |
| deploy     | Copy Django project and dependencies to web server directory |
| run        | Execute final deployment steps including database migrations and static file collection |

### Options

| Option    | Description | Used With |
|-----------|-------------|-----------|
| --help    | Show the help message and exit | All commands |
| -s        | Open the settings.py editing menu for production configuration | configure |

## Example Usage

### Complete Deployment Process
To run the complete deployment process:

```bash
djanbee launch
djanbee setup
djanbee configure
djanbee deploy
djanbee run
```

## Production Environment

After deployment, Djanbee creates the following structure:

```
/var/www/[domain_name]/
├── application/       # Your Django project files
│   ├── manage.py
│   ├── yourproject/
│   └── ...
├── env/               # Virtual environment
│   ├── bin/
│   ├── lib/
│   └── ...
├── static/            # Collected static files
└── media/             # User uploaded files
```

## Database Support

Currently, Djanbee is optimized for PostgreSQL with peer authentication, which:
- Uses the operating system's username to authenticate automatically
- Eliminates password management
- Provides enhanced security for local connections
- Simplifies deployment

## Security Notes

- Settings.py is modified before deployment for production-ready security
- File permissions are properly set (644 for files, 755 for directories)
- Socket file has 660 permissions owned by www-data group
- Static/media directories have 755 permissions with www-data ownership

## Contributing

We welcome contributions to Djanbee! Here's how to get started:

### Quick Start
1. Fork the repository and clone your fork
2. Create a new branch: `git checkout -b feature/your-feature`
3. Make your changes following PEP 8 standards
4. Test thoroughly on Linux/Ubuntu environments
5. Commit with clear messages: `git commit -m "Add: description"`
6. Push and create a Pull Request

### What We Need
- Bug fixes for deployment issues
- New server configurations (Apache, different setups)
- Database support improvements (MySQL, SQLite)
- Documentation and security enhancements
- Cross-platform support

### Reporting Issues
Include your OS, Python version, Django version, and error logs when reporting bugs.

Questions? Open an issue or reach out to maintainers. Thanks for helping improve Djanbee! 🐝
