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
Add “dev_sup” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'dev_sup', ]
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.
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.
Run python manage.py migrate to create the dev_sup models.
Run python manage.py generate_project to generate simple project.
Start the development server and visit http://127.0.0.1:8000/ to check out generated project.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08abd7e3c60c3e0acedecf40715cc35e1b2aafd6075203243bd63ea3d12cc1fc |
|
MD5 | aae7a20680fbd5cdf5614e2209a99346 |
|
BLAKE2b-256 | 620cbf31063f6f4887717fa1becc8d575848bae7dd7098ab93fc1adb90e1b36f |