Browse Source
Artist graph improvements
Artist graph improvements
- title - full artist name on multiple lines - responsive and fit screen (#63) Other: - added creating db to README - added script to update requirements - updated requirementsmaster
Kevin Mok
6 years ago
10 changed files with 150 additions and 27 deletions
-
7.gitignore
-
16README.md
-
86graphs/static/graphs/scripts/artist_graph.js
-
2graphs/static/graphs/scripts/genre_graph.js
-
8graphs/templates/graphs/artist_graph.html
-
4graphs/templates/graphs/genre_graph.html
-
40requirements.txt
-
3scripts/update-history.sh
-
7todo.md
-
4upgrade-pip-reqs.sh
@ -0,0 +1,40 @@ |
|||
astroid==2.2.5 |
|||
backports.csv==1.0.7 |
|||
certifi==2019.3.9 |
|||
chardet==3.0.4 |
|||
defusedxml==0.5.0 |
|||
Django==2.2 |
|||
django-appconf==1.0.3 |
|||
django-compressor==2.2 |
|||
django-crispy-forms==1.7.2 |
|||
django-filter==2.1.0 |
|||
django-sass-processor==0.7.3 |
|||
django-tables2==2.0.6 |
|||
djangorestframework==3.9.2 |
|||
et-xmlfile==1.0.1 |
|||
idna==2.8 |
|||
isort==4.3.17 |
|||
jdcal==1.4 |
|||
lazy-object-proxy==1.3.1 |
|||
libsass==0.18.0 |
|||
mccabe==0.6.1 |
|||
odfpy==1.4.0 |
|||
openpyxl==2.6.2 |
|||
psycopg2==2.8.2 |
|||
psycopg2-binary==2.8.2 |
|||
pylint==2.3.1 |
|||
python-dateutil==2.8.0 |
|||
pytz==2019.1 |
|||
PyYAML==5.1 |
|||
rcssmin==1.0.6 |
|||
requests==2.21.0 |
|||
rjsmin==1.0.12 |
|||
six==1.12.0 |
|||
sqlparse==0.3.0 |
|||
tablib==0.13.0 |
|||
typed-ast==1.3.1 |
|||
unicodecsv==0.14.1 |
|||
urllib3==1.24.1 |
|||
wrapt==1.11.1 |
|||
xlrd==1.2.0 |
|||
xlwt==1.3.0 |
@ -1,3 +1,4 @@ |
|||
#!/bin/bash |
|||
|
|||
/home/kevin/coding/spotify-lib-vis/bin/python /home/kevin/coding/spotify-lib-vis/src/manage.py update-history >> /home/kevin/coding/spotify-lib-vis/src/api/management/commands/update-history.log |
|||
# /home/kevin/coding/spotify-lib-vis/bin/python /home/kevin/coding/spotify-lib-vis/src/manage.py update-history >> /home/kevin/coding/spotify-lib-vis/src/api/management/commands/update-history.log 2>&1 |
|||
python /home/kevin/coding/spotify-lib-vis/src/manage.py update-history >> /home/kevin/coding/spotify-lib-vis/src/api/management/commands/update-history.log 2>&1 |
@ -0,0 +1,7 @@ |
|||
- genre graph |
|||
- convert to bar graph |
|||
- sizing |
|||
- ordering |
|||
- loading/progress indicator |
|||
- change js tabs to 2 spaces |
|||
- Heroku? |
@ -0,0 +1,4 @@ |
|||
#!/bin/bash |
|||
|
|||
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U |
|||
pip freeze --local > requirements.txt |
Write
Preview
Loading…
Cancel
Save
Reference in new issue