Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
10 lines (7 sloc) 271 Bytes
var dotenv = require('dotenv');
dotenv.load();
var PATH_MARKER = process.platform === 'win32' ? '\\' : '/';
module.exports = {
'fccPath': process.cwd().substr(0, process.cwd().lastIndexOf(PATH_MARKER))
+ '/' + process.env.FCC_FOLDER_NAME + '/seed/challenges/'
};
Something went wrong with that request. Please try again.