mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
Settings System (#46)
* feat(api): settings system Also includes /auth/me endpoint for ticket ch76 and OpenAPI 3.0 compatibility for ch77 * refactor(api): remove unused imports
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
const devConfig = {
|
||||
type: 'sqlite',
|
||||
database: 'db/db.sqlite3',
|
||||
database: 'config/db/db.sqlite3',
|
||||
synchronize: true,
|
||||
logging: true,
|
||||
entities: ['server/entity/**/*.ts'],
|
||||
@@ -13,7 +13,7 @@ const devConfig = {
|
||||
|
||||
const prodConfig = {
|
||||
type: 'sqlite',
|
||||
database: 'db/db.sqlite3',
|
||||
database: 'config/db/db.sqlite3',
|
||||
synchronize: false,
|
||||
logging: false,
|
||||
entities: ['dist/server/entity/**/*.js'],
|
||||
|
Reference in New Issue
Block a user