devcontainer.json 389 B

123456789101112131415
  1. {
  2. "name": "OpenHands Codespaces",
  3. "image": "mcr.microsoft.com/devcontainers/universal",
  4. "customizations":{
  5. "vscode":{
  6. "extensions": [
  7. "ms-python.python"
  8. ]
  9. }
  10. },
  11. "onCreateCommand": "sh ./.devcontainer/on_create.sh",
  12. "postCreateCommand": "make build",
  13. "postStartCommand": "USE_HOST_NETWORK=True nohup bash -c 'make run &'"
  14. }