Files
freeCodeCamp/constants.js

8 lines
265 B
JavaScript
Raw Normal View History

2018-11-09 15:29:46 -08:00
require('dotenv').config();
const owner = process.env.REPOSITORY_OWNER;
const repo = process.env.REPOSITORY;
2018-11-06 23:04:43 -08:00
const fccBaseUrl = `https://github.com/${owner}/${repo}/`;
const prBaseUrl = `${fccBaseUrl}pull/`;
2018-11-11 23:52:00 -08:00
module.exports = { owner, repo, fccBaseUrl, prBaseUrl }