-
-
Notifications
You must be signed in to change notification settings - Fork 131
Description
Hello,
The documentation for setting up a Django Unicorn project is not very clear. I was following the installation process: https://www.django-unicorn.com/docs/installation/
Here are the issues I encountered:
-
The first small issue is that it asks to install django-unicorn without first instructing to install and set up a Django project. It should specify this beforehand.
-
The second issue is that it's not very clear how to set up the template. Here is the documentation:
3. Add {% load unicorn %} to the top of the Django HTML template.
4. Add {% unicorn_scripts %} into the Django HTML template and make sure there is a {% csrf_token %} in the template as well.<!-- index.html -->
{% load unicorn %}
<html>
<head>
{% unicorn_scripts %}
</head>
<body>
{% csrf_token %}
</body>
</html>But where is this supposed to be placed? Should I create an empty Django project with django startapp application_name, create a templates folder inside it, and add an index.html inside? Should I create an "empty" view that will show this template? What about the startunicorn command? Should it be a different app? If yes, what is the purpose of creating a Django app just for an index.html file?
I'm just following the tutorial, and I think it should be clearer on how to install and set up a Django Unicorn project.
I'm sorry to create issue like this but I think it could really help newcomer like me to the project.
Thank you.