-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
6,532 additions
and
5,125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { createGQLClient } from "./client.ts"; | ||
import { Context } from "./context.ts"; | ||
|
||
/** | ||
* @hidden | ||
* | ||
* Initialize a default client context from environment. | ||
*/ | ||
export function initDefaultContext(): Context { | ||
let ctx = new Context(); | ||
|
||
// Prefer DAGGER_SESSION_PORT if set | ||
const daggerSessionPort = Deno.env.get("DAGGER_SESSION_PORT"); | ||
if (daggerSessionPort) { | ||
const sessionToken = Deno.env.get("DAGGER_SESSION_TOKEN"); | ||
if (!sessionToken) { | ||
throw new Error( | ||
"DAGGER_SESSION_TOKEN must be set when using DAGGER_SESSION_PORT" | ||
); | ||
} | ||
|
||
ctx = new Context({ | ||
client: createGQLClient(Number(daggerSessionPort), sessionToken), | ||
}); | ||
} else { | ||
throw new Error("DAGGER_SESSION_PORT must be set"); | ||
} | ||
|
||
return ctx; | ||
} |
Oops, something went wrong.