Skip to content

Commit

Permalink
review of #1278 and #1414
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuancelin committed Feb 21, 2023
1 parent ba7e0db commit 6b3fb9a
Show file tree
Hide file tree
Showing 8 changed files with 834 additions and 4 deletions.
2 changes: 2 additions & 0 deletions experiments/otoroshi-wasm-manager/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ yarn.lock
server/node_modules
ui/node_modules
server/.env
/dev.env
/lib
2 changes: 1 addition & 1 deletion experiments/otoroshi-wasm-manager/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { S3 } = require('./s3');
const swaggerUi = require('swagger-ui-express');

const swaggerDocument = require('./swagger.json');
swaggerDocument.servers = (process.env.MANAGER_EXPOSED_DOMAINS || []).split(',').map(url => ({ url }))
swaggerDocument.servers = (process.env.MANAGER_EXPOSED_DOMAINS || "").split(',').map(url => ({ url }))

const pluginsRouter = require('./routers/plugins');
const templatesRouter = require('./routers/templates');
Expand Down

0 comments on commit 6b3fb9a

Please sign in to comment.