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.2.tar.gz (29.2 kB view details)

Uploaded Source

File details

Details for the file dev_sup-0.1.2.tar.gz.

File metadata

  • Download URL: dev_sup-0.1.2.tar.gz
  • Upload date:
  • Size: 29.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.5 tqdm/4.62.3 importlib-metadata/4.0.1 keyring/23.0.1 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7

File hashes

Hashes for dev_sup-0.1.2.tar.gz
Algorithm Hash digest
SHA256 08abd7e3c60c3e0acedecf40715cc35e1b2aafd6075203243bd63ea3d12cc1fc
MD5 aae7a20680fbd5cdf5614e2209a99346
BLAKE2b-256 620cbf31063f6f4887717fa1becc8d575848bae7dd7098ab93fc1adb90e1b36f

See more details on using hashes here.

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