remove sqlite db

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

3
.gitignore vendored
View file

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

Binary file not shown.

View file

@ -28,7 +28,6 @@ const sqliteConfig: TypeOrmModuleOptions = {
SubCategoriesModule, SubCategoriesModule,
ExpensesModule ExpensesModule
], ],
controllers: [AppController], controllers: [AppController]
providers: []
}) })
export class AppModule { } export class AppModule { }