build #26

Merged
bizcochito merged 14 commits from build into develop 2024-01-14 13:56:46 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a226155e9a - Show all commits

View File

@ -1,4 +1,3 @@
import populateDatabase from "../tests/populateDatabase";
import { startApp } from "./app"; import { startApp } from "./app";
await startApp(); await startApp();
@ -7,6 +6,7 @@ await startApp();
try { try {
// Not insert test data into production // Not insert test data into production
if (process.env.NODE_ENV != "production") { if (process.env.NODE_ENV != "production") {
const populateDatabase = require("../tests/populateDatabase");
await populateDatabase(); await populateDatabase();
} }
} catch {} } catch {}