fixing vercel deploy
This commit is contained in:
parent
f24e9980f3
commit
91ce34e260
@ -6,7 +6,7 @@ sources:
|
||||
handler:
|
||||
graphql:
|
||||
endpoint: https://directus.andert.me/graphql
|
||||
source: ./public/schemas/directus.graphql
|
||||
source: ./src/schemas/directus.graphql
|
||||
operationHeaders:
|
||||
Authorization: Bearer {env.DIRECTUS_API}
|
||||
additionalResolvers:
|
||||
@ -16,13 +16,13 @@ additionalResolvers:
|
||||
# handler:
|
||||
# openapi:
|
||||
# endpoint: https://my.andert.me/api/v1
|
||||
# source: ./public/schemas/cloudron.json
|
||||
# source: ./src/schemas/cloudron.json
|
||||
# operationHeaders:
|
||||
# Authorization: Bearer {env.CLOUDRON_API}
|
||||
# - name: Gitea
|
||||
# handler:
|
||||
# openapi:
|
||||
# endpoint: https://git.andert.me/api/v1
|
||||
# source: ./public/schemas/gitea.yml
|
||||
# source: ./src/schemas/gitea.yml
|
||||
# operationHeaders:
|
||||
# Authorization: Bearer {env.GITEA_API}
|
||||
|
@ -24,7 +24,7 @@ async function fetchSchema() {
|
||||
});
|
||||
|
||||
// Save the schema to a file
|
||||
fs.writeFileSync('./public/schemas/directus.graphql', schema);
|
||||
fs.writeFileSync('./src/schemas/directus.graphql', schema);
|
||||
}
|
||||
|
||||
fetchSchema().catch(console.error);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2,22 +2,10 @@ const { createClient } = require('graphql-ws');
|
||||
const WebSocket = require('ws');
|
||||
const { PubSub } = require('graphql-subscriptions');
|
||||
const { parse } = require('graphql');
|
||||
const fs = require('fs');
|
||||
const path = require('path')
|
||||
|
||||
const pubsub = new PubSub();
|
||||
|
||||
// let schemaFilePath;
|
||||
// if (process.env.NODE_ENV === 'production') {
|
||||
// schemaFilePath = path.resolve(process.cwd(), 'schemas/directus.graphql');
|
||||
// } else {
|
||||
// schemaFilePath = path.resolve(process.cwd(), 'public/schemas/directus.graphql');
|
||||
// }
|
||||
|
||||
const schema = require('raw-loader!./directus.graphql').default;
|
||||
|
||||
// Read the schema file
|
||||
// const schema = fs.readFileSync(schemaFilePath, 'utf8');
|
||||
const schema = require('raw-loader!../schemas/directus.graphql').default;
|
||||
|
||||
// Parse the schema
|
||||
const document = parse(schema);
|
||||
|
Reference in New Issue
Block a user