Django Base Setup
"Django Base Setup" is a Django app to help you setup a basic Django project.
-
Add "base_setup" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [ ... 'base_setup', ]
-
Run
python manage.py setup_base <<app_name>>
to create the basic app. -
add the urls of newly created app into the main project.
-
Start the development server and visit http://127.0.0.1:8000/ (you'll see Obiwan-Kenobi).