/**
 * 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
});
