-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy tooling changes from hello-world-startos
- Loading branch information
Showing
7 changed files
with
27 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export { getConfig } from "./procedures/getConfig.ts"; | ||
export { setConfig } from "./procedures/setConfig.ts"; | ||
export { getConfig } from "./procedures/getConfig.ts"; | ||
export { properties } from "./procedures/properties.ts"; | ||
export { health } from "./procedures/healthChecks.ts"; | ||
export { migration } from "./procedures/migrations.ts"; | ||
export { health } from "./procedures/healthChecks.ts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { types as T, healthUtil } from "../deps.ts"; | ||
|
||
export const health: T.ExpectedExports.health = { | ||
"web-ui": healthUtil.checkWebUrl("http://helipad.embassy:2112") | ||
} | ||
async "web-ui"(effects, duration) { | ||
return healthUtil.checkWebUrl("http://helipad.embassy:2112")(effects, duration).catch(healthUtil.catchError(effects)) | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import { compat, types as T } from "../deps.ts"; | ||
|
||
export const migration: T.ExpectedExports.migration = | ||
compat.migrations.fromMapping({}, "0.2.1"); | ||
|
||
export const migration: T.ExpectedExports.migration = compat.migrations | ||
.fromMapping({}, "0.2.1" ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// This is where any configuration rules related to the configuration would go. These ensure that the user can only create a valid config. | ||
|
||
import { compat, } from "../deps.ts"; | ||
|
||
export const setConfig = compat.setConfig; |