/node_modules/caniuse-lite/data/regions/RS.js">RS.js 77628cf8bf first comm 2 years ago RU.js 77628cf8bf first comm 2 years ago RW.js 77628cf8bf first comm 2 years ago SA.js 77628cf8bf first comm 2 years ago SB.js 77628cf8bf first comm 2 years ago SC.js 77628cf8bf first comm 2 years ago SD.js 77628cf8bf first comm 2 years ago SE.js 77628cf8bf first comm 2 years ago SG.js 77628cf8bf first comm 2 years ago SH.js 77628cf8bf first comm 2 years ago SI.js 77628cf8bf first comm 2 years ago SK.js 77628cf8bf first comm 2 years ago SL.js 77628cf8bf first comm 2 years ago SM.js 77628cf8bf first comm 2 years ago SN.js 77628cf8bf first comm 2 years ago SO.js 77628cf8bf first comm 2 years ago SR.js 77628cf8bf first comm 2 years ago ST.js 77628cf8bf first comm 2 years ago SV.js 77628cf8bf first comm 2 years ago SY.js 77628cf8bf first comm 2 years ago SZ.js 77628cf8bf first comm 2 years ago TC.js 77628cf8bf first comm 2 years ago TD.js 77628cf8bf first comm 2 years ago TG.js 77628cf8bf first comm 2 years ago TH.js 77628cf8bf first comm 2 years ago TJ.js 77628cf8bf first comm 2 years ago TK.js 77628cf8bf first comm 2 years ago TL.js 77628cf8bf first comm 2 years ago TM.js 77628cf8bf first comm 2 years ago TN.js 77628cf8bf first comm 2 years ago TO.js 77628cf8bf first comm 2 years ago TR.js 77628cf8bf first comm 2 years ago TT.js 77628cf8bf first comm 2 years ago TV.js 77628cf8bf first comm 2 years ago TW.js 77628cf8bf first comm 2 years ago TZ.js 77628cf8bf first comm 2 years ago UA.js 77628cf8bf first comm 2 years ago UG.js 77628cf8bf first comm 2 years ago US.js 77628cf8bf first comm 2 years ago UY.js 77628cf8bf first comm 2 years ago UZ.js 77628cf8bf first comm 2 years ago VA.js 77628cf8bf first comm 2 years ago VC.js 77628cf8bf first comm 2 years ago VE.js 77628cf8bf first comm 2 years ago VG.js 77628cf8bf first comm 2 years ago VI.js 77628cf8bf first comm 2 years ago VN.js 77628cf8bf first comm 2 years ago VU.js 77628cf8bf first comm 2 years ago WF.js 77628cf8bf first comm 2 years ago WS.js 77628cf8bf first comm 2 years ago YE.js 77628cf8bf first comm 2 years ago YT.js 77628cf8bf first comm 2 years ago ZA.js 77628cf8bf first comm 2 years ago ZM.js 77628cf8bf first comm 2 years ago ZW.js 77628cf8bf first comm 2 years ago alt-af.js 77628cf8bf first comm 2 years ago alt-an.js 77628cf8bf first comm 2 years ago alt-as.js 77628cf8bf first comm 2 years ago alt-eu.js 77628cf8bf first comm 2 years ago alt-na.js 77628cf8bf first comm 2 years ago alt-oc.js 77628cf8bf first comm 2 years ago alt-sa.js 77628cf8bf first comm 2 years ago alt-ww.js 77628cf8bf first comm 2 years ago tum/soc - Gogs: Simplico Git Service

暫無描述

devcontainer.json 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/postgres
  3. {
  4. "name": "iris-web",
  5. "dockerComposeFile": "docker-compose.yml",
  6. "service": "devcontainer",
  7. "workspaceFolder": "/workspaces/iris-web",
  8. // Features to add to the dev container. More info: https://containers.dev/features.
  9. // "features": {},
  10. // forward web app & postgres to host
  11. "forwardPorts": [
  12. 8000,
  13. 5432
  14. ],
  15. // Configure tool-specific properties.
  16. // "customizations": {},
  17. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  18. // "remoteUser": "root"
  19. // https://containers.dev/implementors/json_reference/#lifecycle-scripts
  20. // prep our environment before creating & starting container
  21. "initializeCommand": "sh '${localWorkspaceFolder}/.devcontainer/pre-create.sh'",
  22. // setup the dev env after the container was setup
  23. "postCreateCommand": "sh /workspaces/iris-web/.devcontainer/post-create.sh",
  24. "customizations": {
  25. "vscode": {
  26. "extensions": [
  27. // python-related
  28. "ms-python.python",
  29. "ms-python.vscode-pylance",
  30. "KevinRose.vsc-python-indent",
  31. "njpwerner.autodocstring",
  32. // github
  33. "github.vscode-github-actions",
  34. "GitHub.vscode-pull-request-github",
  35. // yaml-related
  36. "redhat.vscode-yaml",
  37. // docker-related
  38. "ms-azuretools.vscode-docker",
  39. // utils
  40. "mtxr.sqltools"
  41. ]
  42. }
  43. }
  44. }