There are several configuration changes you’ll definitely want to consider carefully before deploying your API:
Run the server with the NODE_ENV=production
environment variable. This does several things:
apolloServerOptions: { introspection: true }
in the Graphweaver constructor, but you shouldn’t need to, and doing so presents a security risk.Consider your usage of AdminUI.
_graphweaver
query around for people to use like an introspection endpoint. Disable it by passing adminMetadata: { enabled: false }
to the Graphweaver constructor in src/backend/index.ts
Consider GraphQL Armor’s options
graphqlArmorOptions
key in the Graphweaver constructor, for example:export const graphweaver = new Graphweaver({
// Other options
graphQLArmorOptions: {
blockFieldSuggestion: { mask: '&&&&&&&&&' },
},
});
If you’re using Federation, consider your usage of Federation Tracing
enableFederationTracing: false
option to the Graphweaver constructor in src/backend/index.ts
.Consider CORS
corsOptions
in the Graphweaver constructor in src/backend/index.ts
.When you are ready to deploy your Graphweaver App it is important to understand how Graphweaver builds the distribution files and how these can be deployed.
When you run the graphweaver build
command a dist
directory will be created in the root of the project.
This directory contains two more directories:
admin-ui
- This directory contains the front end code used by the AdminUI. This code consists of a single html file and a bundle of assets. This folder can be hosted on any static web server, an S3 bucket, Netlify, PHP shared web hosting, etc. Anywhere that can host a static website.backend
- This directory contains the backend code and is a single bundled index.js file. This file contains the entire server and there is no need to install any node_modules
to run it as they are already bundled. To run this file you only need to run node index.js
.Once the build is complete you can either write deployment scripts yourself to deploy the files or you can use one of our deployment guides: