Skip to content

Latest commit

 

History

History
executable file
·
65 lines (52 loc) · 1.74 KB

File metadata and controls

executable file
·
65 lines (52 loc) · 1.74 KB

app_django_quickstart

Objectives

  • Facade to reduce Django command ceremony typing.
  • In-line Django notes for quick reference.

Project Structure

Dependencies

Setup Instructions

Usage

NB: substitute "my_project" and "my_app" with your actual names.

  • Create project

    ./create_project.sh my_project
  • Create app(s)

    cd my_project
    ./create_app.sh my_app
  • Apply all migrations to the project

    python manage.py migrate
  • Project state after this start system output

  • Run Program

    ./start_system_development.sh

Django Explanation

The my_project project and my_app app have comments with prefix 'user added:'.
These comments explain how everything fits together.
Search for these in explorer.
example:

start system output

Git Conventions