devcontainer.json 408 B

1234567891011121314
  1. {
  2. "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bookworm",
  3. "postCreateCommand": "/bin/bash -c 'python -m pip install uv && python -m uv sync & git clone https://github.com/reflex-dev/reflex-examples; wait'",
  4. "forwardPorts": [3000, 8000],
  5. "portsAttributes": {
  6. "3000": {
  7. "label": "Frontend",
  8. "onAutoForward": "notify"
  9. },
  10. "8000": {
  11. "label": "Backend"
  12. }
  13. }
  14. }