config_github_terminal.js 602 B

1234567891011121314151617181920212223
  1. // The root filesystem location
  2. export const diskImageUrl = IMAGE_URL;
  3. // The root filesystem backend type
  4. export const diskImageType = "github";
  5. // Print an introduction message about the technology
  6. export const printIntro = true;
  7. // Is a graphical display needed
  8. export const needsDisplay = false;
  9. // Executable full path (Required)
  10. export const cmd = CMD;
  11. // Arguments, as an array (Required)
  12. export const args = ARGS;
  13. // Optional extra parameters
  14. export const opts = {
  15. // Environment variables
  16. env: ENV,
  17. // Current working directory
  18. cwd: CWD,
  19. // User id
  20. uid: 1000,
  21. // Group id
  22. gid: 1000
  23. };