71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
import { configureWunderGraphApplication, cors, EnvironmentVariable, introspect, templates } from '@wundergraph/sdk';
|
|
import server from './wundergraph.server';
|
|
import operations from './wundergraph.operations';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import dotenv from 'dotenv';
|
|
dotenv.config();
|
|
|
|
const directusSchema = fs.readFileSync(path.join(path.resolve(), './schemas/directus.graphql'), 'utf8');
|
|
|
|
const countries = introspect.graphql({
|
|
apiNamespace: 'countries',
|
|
url: 'https://countries.trevorblades.com/',
|
|
});
|
|
|
|
const spaceX = introspect.graphql({
|
|
apiNamespace: 'spacex',
|
|
url: 'https://spacex-api.fly.dev/graphql/',
|
|
});
|
|
|
|
const directus = introspect.graphql({
|
|
apiNamespace: 'directus',
|
|
loadSchemaFromString: directusSchema,
|
|
url: 'https://directus.andert.me/graphql',
|
|
headers: (builder) => builder
|
|
.addStaticHeader('Authorization', new EnvironmentVariable('DIRECTUS', process.env.DIRECTUS))
|
|
});
|
|
|
|
// configureWunderGraph emits the configuration
|
|
configureWunderGraphApplication({
|
|
apis: [countries, spaceX, directus],
|
|
server,
|
|
operations,
|
|
generate: {
|
|
codeGenerators: [
|
|
{
|
|
templates: [
|
|
// use all the typescript react templates to generate a client
|
|
...templates.typescript.all,
|
|
],
|
|
path: '../src/lib/.wundergraph/generated',
|
|
},
|
|
],
|
|
},
|
|
cors: {
|
|
...cors.allowAll,
|
|
allowedOrigins:
|
|
process.env.NODE_ENV === 'production'
|
|
? [
|
|
// change this before deploying to production to the actual domain where you're deploying your app
|
|
'http://localhost:3000',
|
|
]
|
|
: ['http://localhost:3000', new EnvironmentVariable('WG_ALLOWED_ORIGIN')],
|
|
},
|
|
security: {
|
|
enableGraphQLEndpoint: process.env.NODE_ENV !== 'production' || process.env.GITPOD_WORKSPACE_ID !== undefined,
|
|
},
|
|
authentication: {
|
|
tokenBased: {
|
|
providers: [
|
|
{
|
|
userInfoEndpoint: 'http://localhost:3000/api/wunderauth',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
authorization: {
|
|
roles: ['admin'],
|
|
},
|
|
});
|