2022-03-29 12:55:55 +00:00
|
|
|
import {
|
|
|
|
env,
|
|
|
|
basePath,
|
|
|
|
ORMSession,
|
|
|
|
LocalFilesystem,
|
|
|
|
LocalFilesystemConfig,
|
|
|
|
RedisCache,
|
|
|
|
CacheQueue,
|
|
|
|
BusConnectorConfig, QueueConfig, SyncQueue
|
2022-04-05 16:56:06 +00:00
|
|
|
} from '@extollo/lib'
|
2022-03-29 12:55:55 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
debug: env('DEBUG_MODE', false),
|
|
|
|
|
|
|
|
session: {
|
|
|
|
/* The implementation of @extollo/lib.Session that serves as the session backend. */
|
|
|
|
driver: ORMSession,
|
|
|
|
},
|
|
|
|
|
|
|
|
bus: {
|
|
|
|
connectors: [
|
|
|
|
{type: 'redis'},
|
|
|
|
] as BusConnectorConfig[],
|
|
|
|
},
|
|
|
|
|
|
|
|
queue: {
|
|
|
|
driver: CacheQueue,
|
|
|
|
} as QueueConfig,
|
|
|
|
|
|
|
|
cache: {
|
|
|
|
driver: RedisCache,
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here, you can define various filesystem drivers that can be used in
|
|
|
|
* your application to store/retrieve files.
|
|
|
|
*
|
|
|
|
* The key in the object is the 'name' of the filesystem as it will be
|
|
|
|
* fetched in code. For example, if you have a `fubar: { ... }` item,
|
|
|
|
* then you can retrieve that filesystem using the Files service like
|
|
|
|
* so:
|
|
|
|
*
|
|
|
|
* files.getFilesystem('fubar') // => Filesystem { ... }
|
|
|
|
*/
|
|
|
|
filesystems: {
|
|
|
|
default: {
|
|
|
|
/* If true, this will serve as the default filesystem for modules in your application. */
|
|
|
|
isDefault: true,
|
|
|
|
|
|
|
|
/* The implementation of @extollo/lib.Filesystem that serves as the backend. */
|
|
|
|
driver: LocalFilesystem,
|
|
|
|
|
|
|
|
/* The config required by the filesystem driver. */
|
|
|
|
config: {
|
|
|
|
baseDir: basePath('..', 'uploads').toLocal,
|
|
|
|
} as LocalFilesystemConfig,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
middleware: {
|
|
|
|
global: {
|
2022-03-31 15:22:41 +00:00
|
|
|
pre: [],
|
2022-03-29 12:55:55 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|