-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.js
More file actions
21 lines (20 loc) · 799 Bytes
/
Copy pathconfig.example.js
File metadata and controls
21 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Days Between — configuration template
// Copy this file to config.js and fill in your own keys.
//
// cp config.example.js config.js
//
// config.js is gitignored and never committed.
module.exports = {
// Last.fm API credentials
// Register a free app at https://www.last.fm/api/account/create
// Needed for: scrobbling, Artist Radio (getSimilar), Now Playing updates
LFM_KEY: '',
LFM_SECRET: '',
// setlist.fm API key (optional)
// Register a free key at https://api.setlist.fm/docs/1.0/index.html
// Used (when set) for authoritative per-song play counts and tour data —
// setlist.fm has wider coverage than Relisten alone for jam bands. The
// app falls back gracefully when this is empty: features that depend on
// it stay dormant.
SETLIST_FM_KEY: '',
};