Skip to content

Latest commit

 

History

History
156 lines (96 loc) · 7.14 KB

File metadata and controls

156 lines (96 loc) · 7.14 KB

init-app-logo(2)

PyPI Downloads

FastAPI Flask Django Bottle Falcon Pyramid Uvicorn Gunicorn Hypercorn Waitress Docker Kubernetes GitHub Actions Jenkins PostgreSQL SQLite MongoDB dbt LangChain Linux Windows Python

image

Version: 1.0.0

Engineer: Ashmeet Singh

This document outlines the full capabilities of the Project Engine. The engine supports two primary flows: Interactive UI (Menu-driven) and Headless CLI (Flag-driven).


🕹️ 1. Build Strategies

The engine behaves differently based on the -t (type) flag:

Strategy Behavior
auto_config Zero-Config. Uses smart defaults for the chosen framework. Best for rapid prototyping.
standard The Balanced Build. Generates common folder structures (routes, models, schemas).
production Enterprise Ready. Includes full infrastructure suites (Docker, K8s) and strict folder separation.
custom Total Control. Enables manual folder selection and individual __init__.py configuration.

🛠️ 2. CLI Flag Reference

Use these flags to bypass menus and automate your workflow.

Core Identity

  • name: The name of your project folder.
  • -f, --framework: fastapi, flask, django, others.
  • -s, --server: Specify the runner (e.g., uvicorn, gunicorn, hypercorn).
  • -t, --type: The build strategy (auto_config, standard, production, custom).

Architecture & Packages (Custom Mode)

  • --folders: Manually define every directory to be created.
  • --packages: Define which of those folders should be Python packages (adds __init__.py).

Data & Environment

  • --db: Set the database engine (sqlite, postgres, mysql, mongodb).
  • --venv: Enable virtual environment creation (y or n).

Infrastructure Forge

  • --docker: dockerfile, docker-compose, .dockerignore.
  • --github: main.yml, ci.yml, cd.yml.
  • --k8s: deployment.yml, service.yml, ingress.yml.
  • --jenkins: Jenkinsfile.

🚀 3. Usage Examples

A. The "Speed Demon" (Auto-Config)

Builds a FastAPI project with SQLite and a VENV instantly.

init-app quick_api -f fastapi -t auto_config --venv y

B. The "Full Stack Pro" (Production)

Builds a Django + Postgres app with Docker and GitHub Actions.

init-app pro_backend -f django -t production --db postgres --docker dockerfile docker-compose --github main.yml

C. The "Architect" (Deep Customization)

The most powerful command. Manually define folders and only make src and app Python packages.

init-app bespoke_engine -f fastapi -t custom \
  --folders src app docs tests logs \
  --packages src app \
  --db mongodb --venv y

🧠 4. Internal Logic & Features

🐍 Selective Package Initialization

Unlike standard generators that put __init__.py everywhere, this engine uses an init_strategy map. It only converts a folder into a Python package if explicitly told to or if the framework requires it.

💉 Snippet Injection (Django)

When building Django, the engine performs "surgical" regex injections:

  • Settings Patching: Automatically adds your App to INSTALLED_APPS.
  • Security Injection: Moves SECRET_KEY to environment variable logic.
  • DRF Integration: If DRF is detected, it injects the REST_FRAMEWORK configuration block automatically.

🛡️ UI Folder Guard

The engine contains a security layer that prevents any template rendering from writing into the ui/ directory, protecting the engine's core interface assets during a project build.


🏗️ 5. Directory Structure Example (Production)

image image

Contributors are welcome to this to enhance the optimisation of this repository