move some parts to services and introduce the backend communication for the airports

This commit is contained in:
Sven Czarnian
2022-11-03 23:36:21 +01:00
parent 914048fadf
commit 5c9352c362
4 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
export const Configuration = {
resourceServer: process.env.RESOURCE_SERVER || 'http://localhost:3000',
vatsim: {
authorizeUrl: process.env.VATSIM_AUTH_URL || 'https://auth-dev.vatsim.net/oauth/authorize',
clientId: process.env.VATSIM_CLIENT_ID || '461',
},
};