A simple way to add robots.txt and humans.txt to your Django project
Quickstart
Install django-cyborg:
pip install django-cyborg
Add cyborg your INSTALLED_APPS:
INSTALLED_APPS=[
...
'cyborg',
]
Add cyborg to your urls.py:
url(r'^', include('cyborg.urls')),
Customising
To add your own text to either robots.txt or humans.txt simply override
the relevant template. Create a cyborg/robots.txt or a cyborg/humans.txt
and place it somewhere that is discoverable by your template loader.