freeCodeCamp/tools/scripts/ensure-env.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

const fs = require('fs');
2018-09-06 14:18:48 +00:00
const path = require('path');
const debug = require('debug');
const envPath = path.resolve(__dirname, '../../.env');
require('dotenv').config({ path: envPath });
2018-09-27 14:51:53 +00:00
const env = require('../../config/env');
const { createRedirects } = require('./createRedirects');
const log = debug('fcc:tools:ensure-env');
const {
HOME_LOCATION: home,
API_LOCATION: api,
FORUM_LOCATION: forum,
FORUM_PROXY_LOCATION: forumProxy
} = process.env;
2018-09-27 14:51:53 +00:00
const apiPath = path.resolve(__dirname, '../../api-server');
const clientPath = path.resolve(__dirname, '../../client');
const clientStaticPath = path.resolve(clientPath, 'static');
const redirects = createRedirects({ api, home, forum, forumProxy });
fs.writeFile(`${clientStaticPath}/_redirects`, redirects, function(err) {
if (err) {
log('Error');
console.error(err);
}
log('_redirects written');
});
2018-09-06 14:18:48 +00:00
fs.access(`${apiPath}/server/rev-manifest.json`, function(err) {
if (err) {
log('creating manifest');
return fs.writeFileSync(`${apiPath}/server/rev-manifest.json`, '{}');
}
log('rev-manifest present');
return null;
});
2018-09-06 14:18:48 +00:00
fs.access(`${apiPath}/server/resources/pathMigration.json`, err => {
if (err) {
log('creating pathMigration');
return fs.writeFileSync(
`${apiPath}/server/resources/pathMigration.json`,
'{}'
);
}
log('pathMigration present');
return null;
});
2018-09-27 06:58:31 +00:00
fs.writeFileSync(`${clientPath}/config/env.json`, JSON.stringify(env));