mirror of
https://github.com/movie-web/backend.git
synced 2025-09-13 14:53:25 +00:00
24 lines
520 B
TypeScript
24 lines
520 B
TypeScript
import { FragmentSchema } from '@/config/fragments/types';
|
|
|
|
export const devFragment: FragmentSchema = {
|
|
server: {
|
|
allowAnySite: true,
|
|
trustProxy: true,
|
|
},
|
|
logging: {
|
|
format: 'pretty',
|
|
debug: true,
|
|
},
|
|
postgres: {
|
|
syncSchema: true,
|
|
},
|
|
crypto: {
|
|
sessionSecret: 'aINCithRivERecKENdmANDRaNKenSiNi',
|
|
},
|
|
meta: {
|
|
name: 'movie-web development',
|
|
description:
|
|
"This backend is only used in development, do not create an account if you this isn't your own instance",
|
|
},
|
|
};
|