diff --git a/.meshrc.yml b/.meshrc.yml
index 6cff9fb..cf4a929 100644
--- a/.meshrc.yml
+++ b/.meshrc.yml
@@ -6,7 +6,7 @@ sources:
handler:
graphql:
endpoint: https://directus.andert.me/graphql
- source: ./src/schemas/directus.graphql
+ source: ./public/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: ./src/schemas/cloudron.json
+ # source: ./public/schemas/cloudron.json
# operationHeaders:
# Authorization: Bearer {env.CLOUDRON_API}
# - name: Gitea
# handler:
# openapi:
# endpoint: https://git.andert.me/api/v1
- # source: ./src/schemas/gitea.yml
+ # source: ./public/schemas/gitea.yml
# operationHeaders:
# Authorization: Bearer {env.GITEA_API}
diff --git a/public/next.svg b/public/next.svg
deleted file mode 100644
index 5174b28..0000000
--- a/public/next.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/schemas/cloudron.json b/public/schemas/cloudron.json
similarity index 100%
rename from src/schemas/cloudron.json
rename to public/schemas/cloudron.json
diff --git a/src/schemas/directus.graphql b/public/schemas/directus.graphql
similarity index 100%
rename from src/schemas/directus.graphql
rename to public/schemas/directus.graphql
diff --git a/src/schemas/gitea.yml b/public/schemas/gitea.yml
similarity index 100%
rename from src/schemas/gitea.yml
rename to public/schemas/gitea.yml
diff --git a/src/schemas/gridproxy.json b/public/schemas/gridproxy.json
similarity index 100%
rename from src/schemas/gridproxy.json
rename to public/schemas/gridproxy.json
diff --git a/public/vercel.svg b/public/vercel.svg
deleted file mode 100644
index d2f8422..0000000
--- a/public/vercel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/fetch-schema.js b/src/fetch-schema.js
index 68bf292..0fb368b 100644
--- a/src/fetch-schema.js
+++ b/src/fetch-schema.js
@@ -24,7 +24,7 @@ async function fetchSchema() {
});
// Save the schema to a file
- fs.writeFileSync('./src/schemas/directus.graphql', schema);
+ fs.writeFileSync('./public/schemas/directus.graphql', schema);
}
fetchSchema().catch(console.error);
diff --git a/src/resolvers/directus_subscriptions.js b/src/resolvers/directus_subscriptions.js
index 8192ea7..efe9ebf 100644
--- a/src/resolvers/directus_subscriptions.js
+++ b/src/resolvers/directus_subscriptions.js
@@ -8,7 +8,7 @@ const path = require('path')
const pubsub = new PubSub();
// Generate an absolute path to the schema file
-const schemaFilePath = path.resolve(process.cwd(), 'src/schemas/directus.graphql');
+const schemaFilePath = path.resolve(process.cwd(), 'public/schemas/directus.graphql');
// Read the schema file
const schema = fs.readFileSync(schemaFilePath, 'utf8');