django-fs-leonid is the Django-related reusable app provides the ability to create and store in a database files such as robots.txt, sitemap.xml and so on.
Install
django-fs-leonid
usingpip
:$ pip install django-fs-leonid
Add
'fs_leonid'
to yourINSTALLED_APPS
setting:INSTALLED_APPS = ( ... 'fs_leonid', ... )
Update your
urls.py
:path('', include('fs_leonid.urls')),
Run
migrate
:$ ./manage.py migrate