forked from maxkueng/somascrobbler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.dist.js
39 lines (36 loc) · 2.31 KB
/
config.dist.js
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
35
36
37
38
39
// The URL of your application (including port)
exports.baseURL = 'http://127.0.0.1:9999/';
// HTTP port the web interface should listen on
exports.httpPort = 9999;
// Your Last.fm API key and secret
exports.lastfmAPIKey = 'YOUR_API_KEY';
exports.lastfmAPISecret = 'YOUR_API_SECRET';
// The SomaFM radio stations to be checked for tracks
exports.stations = {
'groovesalad' : { 'stationId' : 'groovesalad', 'stationName' : 'Groove Salad' },
'lush' : { 'stationId' : 'lush', 'stationName' : 'Lush' },
'dronezone' : { 'stationId' : 'dronezone', 'stationName' : 'Drone Zone' },
'sonicuniverse' : { 'stationId' : 'sonicuniverse', 'stationName' : 'Sonic Universe' },
'digitalis' : { 'stationId' : 'digitalis', 'stationName' : 'Digitalis' },
'indiepop' : { 'stationId' : 'indiepop', 'stationName' : 'Indie Pop Rocks!' },
'poptron' : { 'stationId' : 'poptron', 'stationName' : 'PopTron' },
'bagel' : { 'stationId' : 'bagel', 'stationName' : 'BAGeL Radio' },
'covers' : { 'stationId' : 'covers', 'stationName' : 'Covers' },
'u80s' : { 'stationId' : 'u80s', 'stationName' : 'Underground 80s' },
'secretagent' : { 'stationId' : 'secretagent', 'stationName' : 'Secret Agent' },
'suburbsofgoa' : { 'stationId' : 'suburbsofgoa', 'stationName' : 'Suburbs of Goa' },
'beatblender' : { 'stationId' : 'beatblender', 'stationName' : 'Beat Blender' },
'dubstep' : { 'stationId' : 'dubstep', 'stationName' : 'Dub Step Beyond' },
'spacestation' : { 'stationId' : 'spacestation', 'stationName' : 'Space Station' },
'missioncontrol' : { 'stationId' : 'missioncontrol', 'stationName' : 'Mission Control' },
'bootliquor' : { 'stationId' : 'bootliquor', 'stationName' : 'Boot Liquor' },
'illstreet' : { 'stationId' : 'illstreet', 'stationName' : 'Illinois Street Lounge' },
'thetrip' : { 'stationId' : 'thetrip', 'stationName' : 'The Trip' },
'cliqhop' : { 'stationId' : 'cliqhop', 'stationName' : 'cliqhop idm' },
'doomed' : { 'stationId' : 'doomed', 'stationName' : 'Doomed' },
'brfm' : { 'stationId' : 'brfm', 'stationName' : 'Black Rock FM' },
'sf1033' : { 'stationId' : 'sf1033', 'stationName' : 'SF 10-33' },
'xmasrocks' : { 'stationId' : 'xmasrocks', 'stationName' : 'Christmas Rocks!' },
'christmas' : { 'stationId' : 'christmas', 'stationName' : 'Christmas Lounge' },
'xmasinfrisko' : { 'stationId' : 'xmasinfrisko', 'stationName' : 'Xmas in Frisko' }
};