mirror of
https://github.com/p-stream/backend.git
synced 2026-03-11 17:55:35 +00:00
18 lines
352 B
TypeScript
18 lines
352 B
TypeScript
import { FragmentSchema } from '@/config/fragments/types';
|
|
|
|
export const devFragment: FragmentSchema = {
|
|
server: {
|
|
cors: 'http://localhost:5173',
|
|
trustProxy: true,
|
|
},
|
|
logging: {
|
|
format: 'pretty',
|
|
debug: true,
|
|
},
|
|
postgres: {
|
|
syncSchema: true,
|
|
},
|
|
crypto: {
|
|
sessionSecret: 'aINCithRivERecKENdmANDRaNKenSiNi',
|
|
},
|
|
};
|