This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/app-backend/config/host.config.js

16 lines
471 B
JavaScript

module.exports = {
youtube: {
name: "Youtube",
shortname: "yt",
baseAPIUrl: 'https://youtube.googleapis.com/youtube/v3',
baseChannelUrl: 'https://www.youtube.com/channel/',
YOUTUBE_API_KEY: process.env.YOUTUBE_API_KEY
},
dailymotion: {
name: "Dailymotion",
shortname: "dm",
baseAPIUrl: 'https://api.dailymotion.com',
baseChannelUrl: 'https://www.dailymotion.com/',
DAILYMOTION_API_KEY: process.env.DAILYMOTION_API_KEY
}
};