Remove Firebase hosting, back to Express

This commit is contained in:
Michael Jackson
2019-01-26 15:20:15 -08:00
parent 0ae074e164
commit 5533725f64
32 changed files with 1174 additions and 5451 deletions

View File

@ -1,14 +0,0 @@
const path = require('path');
const execSync = require('child_process').execSync;
function exec(cmd) {
execSync(cmd, { stdio: 'inherit', env: process.env });
}
process.chdir(path.resolve(__dirname, '../functions'));
if (process.env.CI) {
exec('npm ci');
} else {
exec('npm install');
}