-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub: First attempt at GH pages deployment
- Loading branch information
1 parent
7172350
commit 12ed378
Showing
3 changed files
with
46 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// The root filesystem location | ||
export const diskImageUrl = IMAGE_URL; | ||
// The root filesystem backend type | ||
export const diskImageType = "github"; | ||
// Print an introduction message about the technology | ||
export const printIntro = true; | ||
// Is a graphical display needed | ||
export const needsDisplay = false; | ||
// Executable full path (Required) | ||
export const cmd = CMD; | ||
// Arguments, as an array (Required) | ||
export const args = ARGS; | ||
// Optional extra parameters | ||
export const opts = { | ||
// Environment variables | ||
env: ENV; | ||
// Current working directory | ||
cwd: CWD; | ||
// User id | ||
uid: 1000, | ||
// Group id | ||
gid: 1000 | ||
}; |
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