album-shelf
is a static web page to display and explore my collection of music records.
Screenshot from adrienjoly.com/album-shelf:
It uses Jekyll to render the list in HTML from a YAML data file (see albums.yaml
) and Github-pages to make it accessible to the public.
If you want to have a similar page for your own album collection, feel free to fork this repository and replace my list of albums by yours!
$ npm run add:spotify-album
$ npm run add:spotify-saved-abums
$ npm run add:spotify-playlists
Notice: In order to create and publish your collection, you need to have a Github account, to be familiar with
git
and with the use of the command line.
Follow these steps:
- fork this repository into your own Github account;
- update your copy of
_config.yml
to fill your name and Google Analytics ID; - edit your copy of
albums.yaml
; - test your changes locally by running
npm install
, thennpm start
; - commit and push your changes to your fork repository (e.g. using
git push
); - activate Github-pages on your
master
branch, as displayed below:
- browse your collection on
http://<your_github_username>.github.io/album-shelf
. 👌