Command line utility to build Django projects

Kapustlo 25902e0c4a Updated version to 3.3.0 пре 2 година
build_django 25902e0c4a Updated version to 3.3.0 пре 2 година
scripts f58533e9dd Added helper scripts пре 2 година
tests c7c9033fee Added git config support пре 2 година
.gitignore b075edfbb7 Refactoring + async support пре 2 година
LICENSE e2e9137eb4 Initial commit пре 2 година
README.md d669addbae Added USE_SSL пре 2 година
requirements.txt 6b50c08fdf Added pytest to deps пре 2 година
setup.py 47773a839c Changed programming language пре 2 година

README.md

build-django

Command line utility to build Django projects

Features

  • Async
  • Flexible

Installation

pip install build-django

Usage

build-django my_project --dir my_project_path  --debug --hosts localhost,127.0.0.1,example.com --python python3  --migrate --git --commit --commit-message "My first commit!" --packages bjcli djangorestframework

Argument Description Required Default Type
--version Show version and exit False False bool
--dir Django project directory False ./ str
--debug Should initialize env with DEBUG=True False False bool
--no-compile pip: Do not compile Python source files to bytecode False False bool
--hosts List of comma sperated Django ALLOWED_HOSTS values False '' str
--python Python command for initializing virtual environment. If not set, the Python used to run the program will be used False None str
--migrate Should apply initial migrations after project built False False bool
--git Should initialize git repository False False bool
--commit Should create initial commit after project built and git initialized False False bool
--commit-message Initial commit message False 'Initial commit' str
--packages List of additional pip packages to be installed False [] [str]
--use-ssl Enable SSL support for reverse proxy (production only) False False bool