Simple django site acting as a frontend for:
- lastfm_cg: Last.fm collage generator
- lastfm_pg: Last.fm playlist generator
- lastfm-wordcloud: Last.fm wordcloud generator
- lastfm-scraper: Some lastfm scripts
To run the website, you will need some config files.
[django]
SECRET_KEY = secret_key_here
[lastfm]
username=username_here
api_key=api_key_here
api_secret=api_secret_here
REDIS_URL=redis://domain.tld
# optional, for docker + traefik
DEFAULT_NETWORK=traefik-network
DOMAIN=domain.tld
ALLOWED_HOSTS='127.0.0.1 localhost domain.tld'
If you can't use ini files (i.e. when deploying with heroku), you can use those environment variables:
PYLAST_USERNAME
PYLAST_API_KEY
PYLAST_API_SECRET
DJANGO_SECRET_KEY
REDIS_URL