Skip to main content

Django Initial Setup provides inital setup screen developed with Django for first launch.

Project description

Django Initial Setup

scn1

Django Initial Setup provides inital setup screen developed with Django for first launch.

Install

To install django-initial-setup, run following command if you use pipenv.

pipenv install django-initial-setup

After installing, add first_setup to INSTALLED_APPS.

INSTALLED_APPS = (
    ...
    'first_setup',
)

Activate routing

After installed django-initial-setup, activate url path editing urls.py like following. The routing accessing initial setup screen, is /initial_user_setup/welcome by default if the path set like follwing.

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
  	...
    path('', include('first_setup.urls')),
]

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

django-initial-setup-0.0.9.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

django_initial_setup-0.0.9-py3-none-any.whl (8.8 kB view hashes)

Uploaded Python 3

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