chore: Remove DEPLOYMENT and SUBDOMAINS_ENABLED (#5742)

This commit is contained in:
Tom Moor
2023-08-28 20:39:58 -04:00
committed by GitHub
parent 7725f29dc7
commit 30a4303a8e
35 changed files with 136 additions and 135 deletions

View File

@@ -10,7 +10,7 @@ export async function checkPendingMigrations() {
try {
const pending = await migrations.pending();
if (!isEmpty(pending)) {
if (env.isCloudHosted()) {
if (env.isCloudHosted) {
Logger.warn(chalk.red("Migrations are pending"));
process.exit(1);
} else {
@@ -34,7 +34,7 @@ export async function checkPendingMigrations() {
}
export async function checkDataMigrations() {
if (env.isCloudHosted()) {
if (env.isCloudHosted) {
return;
}