remove environment variable support and config file autogeneration

This commit is contained in:
miloschwartz 2025-03-08 18:05:53 -05:00
parent 9253dd19ba
commit c93b36c757
No known key found for this signature in database
6 changed files with 17 additions and 271 deletions

View file

@ -40,9 +40,6 @@ const migrations = [
await run();
async function run() {
// backup the database
backupDb();
// run the migrations
await runMigrations();
}
@ -127,6 +124,9 @@ async function executeScripts() {
console.log(`Running migration ${migration.version}`);
try {
// Backup the database before running the migration
backupDb();
await migration.run();
// Update version in database