-
-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve tutorial installation #699
Comments
That would be great if you know how to startup a django-unicorn project |
It would be a lot better to improve the official documentation so every one can benefit from it. |
Do it yourself if you know how to improve it. I cannot because I don't understand how to setup a django-unicorn project but if I could I would have made the PR myself. |
I was talking to @adamghill hill about this recently and I think you make a good point here about making the documentation a little clearer as to how to get started. I may work on this, but probably not till next week. I appreciate the examples you've given above, and if you have any other thoughts, feel free to drop them in here and I'll see if I can address those. |
@CedricRaison I really appreciate that you created this issue! I agree that the documentation should be more clear -- it currently makes a lot of assumptions. We'll be tackling this soon and we'll update this issue when there is something to check out. 👍 |
@adamghill I'm thinking of adding a "Getting Started" section. I was able to build docs locally to test some things, but one thing I was thinking of adding is collapsible/dropdown sections for basic items (installing python, creating django project, etc...) I found out that to do that, I would need to add the a the sphinx extension sphinx-design I tried to add that using poetry into the "docs" group, but got an error: The current project's supported Python range (>=3.8,<4) is not compatible with some of the required packages Python requirement:
- sphinx-design requires Python >=3.9, so it will not be satisfied for Python >=3.8,<3.9 I can keep going without those neat documentation things, but just wanted to bring this up. (This also would enable those tabbed groupings for things like different installation instructions, etc...) |
Oh, for tabbed groupings I was looking at https://github.com/pradyunsg/sphinx-inline-tabs. Let me see what I can do about |
sphinx-design = { version = "*", optional = true }
Can you try that and see what happens for you? |
Okay, I was able to add sphinx-design with the instructions above... Still got error during the build phase (can't recognize directive type: dropdown), but that may be user error there. I'll play around with it a bit more and let you know if I have any other issues. |
Not sure if you added it to the extensions, but maybe that's why? https://sphinx-design.readthedocs.io/en/latest/get_started.html#usage |
Yeah, I was missing that, but also had to add I added both to |
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:
But where is this supposed to be placed? Should I create an empty Django project with
django startapp application_name
, create atemplates
folder inside it, and add anindex.html
inside? Should I create an "empty" view that will show this template? What about thestartunicorn
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.
The text was updated successfully, but these errors were encountered: