-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
34 lines (24 loc) · 790 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
include .env
export $(shell sed 's/=.*//' .env)
add_artist:
docker-compose run app python app.py add-artist
update_artist:
docker-compose run app python app.py update-artist
update_artist_stats:
docker-compose run app python app.py update-artist-stats
update_all_artists_stats:
docker-compose run app python app.py update-all-artists-stats
list_artists:
docker-compose run app python app.py list-artists
compare_artists:
docker-compose run app python app.py compare-artists
show_youtube_report:
docker-compose run app python app.py show-youtube-report
show_spotify_report:
docker-compose run app python app.py show-spotify-report
teardown:
docker-compose down
clean_cache:
find . -name "*.cache" -delete
find . -name "*.pyc" -delete
find . -name "__pycache__" -delete