mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
* This is a nightmare * Checkpointing.... getting closer * First cut - packaging the server in a docker container * Remove busted bundles * Minify build * Some common commands for building - we're going to look into proper monorepo solutions soon * Remove dependency on serve-static * Add web serving, full-stack docker target, and Nvidia container support * Remove test action graph for now
11 lines
455 B
TypeScript
11 lines
455 B
TypeScript
import { defineConfig } from '@mikro-orm/better-sqlite';
|
|
import { TsMorphMetadataProvider } from '@mikro-orm/reflection';
|
|
import baseConfig from './mikro-orm.base.config.js';
|
|
|
|
export default defineConfig({
|
|
...baseConfig,
|
|
entities: ['./dao/entities'], // path to our JS entities (dist), relative to `baseDir`
|
|
entitiesTs: ['./src/dao/entities'], // path to our TS entities (src), relative to `baseDir`
|
|
metadataProvider: TsMorphMetadataProvider,
|
|
});
|