mozaik-ext-github
Version:
Mozaik github widgets
23 lines (18 loc) • 468 B
JavaScript
import convict from 'convict';
const config = convict({
github: {
baseUrl: {
doc: 'The github API base url.',
default: 'https://api.github.com',
format: String,
env: 'GITHUB_BASE_URL'
},
token: {
doc: 'The github API token.',
default: '',
format: String,
env: 'GITHUB_API_TOKEN'
}
}
});
export default config;