Django Start Automate

pip install django-start-automate

Of course you know the routine of creating a new django project is boring there are many steps right that's why i made a tool called django-start

GitHub Repo

This tool makes you create a simple Django project in one command that will save you a lot of time Let's try,

the first thing we'll do is install pip install django-start-automate And you can write this command because you will see the available option django-start --help

Let's make a new project

django-start <project_name><app_name> <virtual_path>

this commando will make a new project and app and virtualenv And you will find the name of the folder env and if you want to choose the name

Keeps. you're going to use this command django-start <project_name> <app_name> -v -n <virtualenv_name> <virtual_path>

Example:


Start First Project with custom virtualenv name

django-start frist_project first_app -v -n my_virtualenv .

Start First Project with default virtualenv name

django-start frist_project first_app .