Skip to main content

A Django app supporting app developer.

Project description

Dev_Sup is a Django app that supports developer in process of creation of Django application.

Quick start

  1. Add “dev_sup” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'dev_sup',
    ]
  2. Include the dev_sup URLconf in your project urls.py like this:

    path('', include('dev_sup.urls')),

Pro tip: include it after your admin paths, so it won’t mess them up.

  1. Configure your TEMPLATES settings like this:

    TEMPLATES = [
        {
            ...
            'DIRS': [os.path.join(BASE_DIR, "dev_sup/templates")],
            ...
            'OPTIONS': {
                'context_processors': [
                    ...
                    'dev_sup.context_processors.all',
                ],
            },
        },
    ]

You will probably need to add import os on top of your settings.py module.

  1. Run python manage.py migrate to create the dev_sup models.

  2. Run python manage.py generate_project to generate simple project.

  3. Start the development server and visit http://127.0.0.1:8000/ to check out generated project.

  4. Visit http://127.0.0.1:8000/admin to add more sites, links, drop down menus and page styles.

You will find more instructions in generated project’s index page.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dev_sup-0.1.1.tar.gz (29.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page