Skip to content
This repository has been archived by the owner on May 29, 2023. It is now read-only.

app-generator/cookiecutter-django

Repository files navigation

Django Generator DEPRECATED

Django Cookie-Cutter is an open-source cookiecutter template built on top of a simple Django codebase with a modern design. For newcomers, Cookiecutter is a command-line utility that creates projects from project templates and Django is a leading web framework built by experts using a batteries-included concept.


NOTE: This project is DEPRECATED by Rocket Generator, a fully-fledged tool that allows:

  • Edit the Extended User fields
  • Edit Models (add/remoev/edit fields)
  • Generate APIs
  • Control Deployment
    • Docker, CI/CD,
    • LIVE Deploy on Render

Django Cookie-Cutter - Open-source generator provided by AppSeed.


Project Customization:


Links


How to use it


Using cookiecutter tool

Step #1 - Create a virtual environment

$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .\env\Scripts\activate 

Step #2 - Install Depenedencies

$ # Install modules - SQLite Storage
$ pip3 install -r requirements.txt

Step #3 - Generate the project

$ cookiecutter https://github.com/app-generator/cookiecutter-django.git

Using appseed-shell package

Step #1 - Install Dependencies

$ pip3 install cookiecutter
$ pip3 install GitPython
$ pip3 install appseed-shell

Step #2 - Launch the Python shell and generate the product

$ python
>>> from appseed_shell import generate_django
>>> generate_django()

Credits & Links

For more resources and support please access:



Django Cookie-Cutter - Provided by AppSeed App Generator.