config_public_terminal.js 784 B

1234567891011121314151617181920212223
  1. // The root filesystem location
  2. export const diskImageUrl = "wss://disks.webvm.io/debian_large_20230522_5044875331.ext2";
  3. // The root filesystem backend type
  4. export const diskImageType = "cloud";
  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 = "/bin/bash";
  11. // Arguments, as an array (Required)
  12. export const args = ["--login"];
  13. // Optional extra parameters
  14. export const opts = {
  15. // Environment variables
  16. env: ["HOME=/home/user", "TERM=xterm", "USER=user", "SHELL=/bin/bash", "EDITOR=vim", "LANG=en_US.UTF-8", "LC_ALL=C"],
  17. // Current working directory
  18. cwd: "/home/user",
  19. // User id
  20. uid: 1000,
  21. // Group id
  22. gid: 1000
  23. };