Other deployment activities
Django
Change the Django admin url. Edit the file mysite/url.py and give a new link to 'new_admin_link'
urlpatterns = [
path('', include('main.urls')),
path('new_admin_link/', admin.site.urls),
]
Localization: In settings.py -file check that you have the values you need in parameters
TIME_ZONE = 'UTC'
USE_TZ = True
Html check
You may run the html validation service, for example, https://validator.w3.org to check that the syntax of
the html is correct
and there are no bottle necks in the html that consume time.
Return to the
Mac main page.