-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.js.example
More file actions
26 lines (24 loc) · 1.19 KB
/
config.js.example
File metadata and controls
26 lines (24 loc) · 1.19 KB
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
/*
1.) make a copy of this file
2.) rename copy to config.js
3.) add your desired configs/creds
*/
var ftconfigs = {
roomName: "Indie Discotheque's Basement", // what you'd like your room name to be displayed as
roomNameShort: "Indie Discotheque", // if you have a long room name, put a shorter version here (like 2 words probably max).
defaultAlbumArtUrl: "", // url of an image to use for tracks with no album art. should be a square and at least 500x500 px for best results.
logoImage: "", // url of an image to use for logo
facebookURL: "",
soundcloudURL: "",
redditURL: "",
lastfmURL: "",
discordURL: "",
roomInfoUrl: "", // Change what the "?" button at the top of the page links to. This can be any URL
firebase:{ // put the info from your Firebase app here. can be found in the Firebase console
apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
authDomain: "xxxxxxxxxxxxxxxxx.firebaseapp.com",
databaseURL: "https://xxxxxxxxxxxxx.firebaseio.com"
},
youtubeKey: "xxxxxxxxxxxxxxxxxxxxxx", // Your youtube api client key. Be sure to whitelist your domain for this key in the google api console.
soundcloudKey: "xxxxxxxxxxxxxxxxxxxx" // Your soundcloud api key
};