You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

devcontainer.json 731 B

123456789101112131415161718192021
  1. {
  2. "customizations": {
  3. "vscode": {
  4. "extensions": [
  5. "ms-python.python",
  6. "ms-toolsai.jupyter",
  7. "visualstudioexptteam.vscodeintellicode"
  8. ],
  9. "settings": {
  10. "terminal.integrated.profiles.linux": {
  11. "bash": {
  12. "path": "/bin/bash"
  13. }
  14. },
  15. "terminal.integrated.defaultProfile.linux": "bash"
  16. }
  17. }
  18. },
  19. "dockerFile": "Dockerfile",
  20. "updateContentCommand": "cd samples/apps/autogen-studio && pip install -e . && sudo npm install -g gatsby-cli && cd frontend && yarn install && yarn build"
  21. }