remove sqlite db

This commit is contained in:
Joe Arndt 2026-02-09 13:58:44 -06:00
parent 78c312f279
commit 4ed5f599b9
3 changed files with 5 additions and 3 deletions

3
.gitignore vendored
View file

@ -54,3 +54,6 @@ pids
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Database
common-cents.db

Binary file not shown.

View file

@ -13,7 +13,7 @@ import { ExpensesModule } from './expenses/expenses.module';
import { Expense } from './expenses/entities/expense.entity';
const sqliteConfig: TypeOrmModuleOptions = {
synchronize: true, // typeorm -h (schema:sync)
synchronize: true,
type: 'sqlite',
database: 'common-cents.db',
entities: [Merchant, Tag, Category, SubCategory, Expense]
@ -28,7 +28,6 @@ const sqliteConfig: TypeOrmModuleOptions = {
SubCategoriesModule,
ExpensesModule
],
controllers: [AppController],
providers: []
controllers: [AppController]
})
export class AppModule { }