-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
30 lines (30 loc) · 896 Bytes
/
config.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
const config = {
midiPath: 'midis/',
LastFMApplicationName: "piano-controller",
LastFMAPIKey: "83a4305883dc14bd520a6e9ebccc2eee",
LastFMAPISharedSecret: "3d1c06956f8f219f95d559670a0ebf17",
LastFMRegisteredTo: "ShellyMatt",
songs: [
{
title: "Satisfaction",
artist: "The Rolling Stones",
midiFile: "Satisfaction.mid"
},
{
title: "Norwegian Wood",
artist: "The Beatles",
midiFile: "NorwegianWood.mid"
},
{
title: "Here Comes the Sun",
artist: "The Beatles",
midiFile: "Here_Comes_The_Sun.mid"
},
{
title: "In Hell I'll be in Good Company",
artist: "The Dead South",
midiFile: "midis/Dead South/In Hell Ill Be In Good Company.mid"
}
]
};
module.exports = config;