Skip to content

Commit

Permalink
feat(dashboard): enable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Feb 9, 2019
1 parent a256159 commit 574f56d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions garden-service/src/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,10 @@ export async function processModules(
})
})

// Experimental HTTP API and dashboard server.
if (process.env.GARDEN_ENABLE_SERVER === "1") {
// allow overriding automatic port picking
const port = Number(process.env.GARDEN_SERVER_PORT) || undefined
await startServer(garden, log, port)
}
// Start HTTP API and dashboard server.
// allow overriding automatic port picking
const port = Number(process.env.GARDEN_SERVER_PORT) || undefined
await startServer(garden, log, port)

await restartPromise

Expand Down

0 comments on commit 574f56d

Please sign in to comment.