pip install django
django-admin startproject projekt-neve
To merge existing migration files into one file:
python manage.py migrate –fake commandpython manage.py makemigrations commandpython manage.py migrate –fake-initial commandpython manage.py migrate contenttypes command
and finally, for chacking if everything is just fine, run python manage.py migrate command.
Now, check django_migration table and make sure all new files added in this table
In urls.py you can override the 3 most important variables:
from django.contrib import admin admin.site.site_header = 'My project' # default: "Django Administration" admin.site.index_title = 'Features area' # default: "Site administration" admin.site.site_title = 'HTML title from adminsitration' # default: "Django site admin"