mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-10 05:55:23 -05:00
6 lines
212 B
TypeScript
6 lines
212 B
TypeScript
export const CONFIG = {
|
|
port: process.env.PORT || 4000,
|
|
graphqlURL: process.env.GRAPHQL_URL || 'http://localhost:8080/v1/graphql',
|
|
adminKey: process.env.HASURA_GRAPHQL_ADMIN_SECRET || 'metagame_secret',
|
|
};
|