⚡ One command Django project setup with DRF, CORS, dotenv & more
Project description
⚡ DjangoForge
One command. Full Django setup. Ready to code.
DjangoForge sets up a complete Django project in seconds — virtual environment, DRF, CORS, dotenv, .gitignore, requirements.txt, and a beautiful welcome page. All automatically.
🚀 Installation
pip install django-forgekit
⚡ Usage
djangoforge myproject
That's it. One command.
✅ What gets created?
myproject/
├── venv/ ← Virtual environment (auto-created)
├── myproject/
│ ├── settings.py ← DRF + CORS + dotenv configured
│ ├── urls.py ← Welcome page routed
│ └── welcome.py ← DjangoForge branded welcome view
├── manage.py
├── .env ← Environment variables
├── .gitignore ← Git ignore rules
└── requirements.txt ← All dependencies
📦 Auto-installed packages
| Package | Purpose |
|---|---|
| Django | Web framework |
| djangorestframework | REST API support |
| django-cors-headers | CORS configuration |
| python-dotenv | .env file support |
▶️ After setup
cd myproject
# Windows
venv\Scripts\activate
# Mac / Linux
source venv/bin/activate
python manage.py migrate
python manage.py runserver
Open http://127.0.0.1:8000 —
🛠️ Auto-configured in settings.py
| Setting | Value |
|---|---|
INSTALLED_APPS |
rest_framework, corsheaders added |
MIDDLEWARE |
CorsMiddleware added at top |
CORS_ALLOWED_ORIGINS |
localhost:3000, localhost:5173 |
REST_FRAMEWORK |
Default permission & auth classes |
load_dotenv() |
.env file loaded automatically |
👨💻 Author
Made with ❤️ by Manish Dange
GitHub: manishdange
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_forgekit-1.0.1.tar.gz.
File metadata
- Download URL: django_forgekit-1.0.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4778a51a9fe06c58830620c2c8dc65d01cd31c05edd8ea0a6c5cca6afbab287
|
|
| MD5 |
e5b036376d2ae1100cf7481c1d18a13a
|
|
| BLAKE2b-256 |
e785958c886911b8d4a1b540e3559db9e80a55eb28efdfe1ba8f38c3b61e524d
|
File details
Details for the file django_forgekit-1.0.1-py3-none-any.whl.
File metadata
- Download URL: django_forgekit-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99c63491cc12f0e6f4ea81c8407fa5373974542050fee52bbb8eb08ef3649813
|
|
| MD5 |
305488729c78911028df8eabff73981b
|
|
| BLAKE2b-256 |
3dc074ec699cb335f8dccd0154232fb797192cf414b7e33f341e8e415fe3f63e
|