Skip to content

Commit ff59945

Browse files
committed
Update README.md
1 parent 75289e9 commit ff59945

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provide basic libraries and resources like jQuery or semantic-ui in django appli
44

55
# Installation
66

7-
For the moment you can install the package with:
7+
You can install the package with pip:
88

99
```bash
1010
pip install django-auto-static-libs
@@ -24,15 +24,15 @@ INSTALLED_APPS = (
2424

2525
# Usage
2626

27-
In your templates add:
27+
In your templates add depending on the library and how you named the folder:
2828
```html
2929
{% load static %}
30-
<script src="{% static 'latest_auto_static_libs/js/jquery/jquery.min.js' %}" type="text/javascript"></script>
30+
<script src="{% static 'latest_auto_static_libs/jquery/jquery.min.js' %}" type="text/javascript"></script>
3131
```
3232

33-
You must run the downloading at the beginning (and to update again):
33+
You must run the downloading at the beginning (or to update). It will run automatically at migration:
3434
```python
35-
python manage.py static-libs-download
35+
python manage.py migrate
3636
#or as command
3737
python manage.py static-libs-download
3838
```

0 commit comments

Comments
 (0)