@cortexql/core
Version:
A RESTful API framework for your apps based on GraphQL type system.
15 lines (13 loc) • 445 B
text/typescript
/**
* Project Configuration.
*
* NOTE: All file/folder paths should be relative to the project root. The
* absolute paths should be resolved during runtime by our build internal/server.
*/
import * as envVars from '@cortexql/core/config/envVars';
import { defaultValues } from '@cortexql/core/config/defaultValues';
import { ConfigSource, loadConfig } from '.';
loadConfig({
...defaultValues,
// put your custom config values here
});