abhiabhi94 / dj-hitcount

Basic app that allows you to track the number of hits/views for a particular object.
MIT License
2 stars 0 forks source link

Missing requirements file from example project #30

Open pmi123 opened 2 years ago

pmi123 commented 2 years ago

There is no dev-requirements.txt file in the project. Instructions at https://dj-hitcount.readthedocs.io/en/latest/example_project.html failed.

abhiabhi94 commented 2 years ago

Hey, the file was removed when the dependency management was moved to poetry in https://github.com/abhiabhi94/dj-hitcount/commit/0137e6de70821c230f6fb9aae49d8d173a31f75d.

For now, you may instead use:

poetry install

This will install the dev-dependencies and also the project in editable mode(so your changes will be directly reflected).

Can you also, please send a patch to fix this in the documentation? let me know in case you need any assistance.