devbox.json 424 B

1234567891011121314151617181920
  1. {
  2. "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
  3. "packages": [
  4. "python@3.11",
  5. "pipenv@latest"
  6. ],
  7. "shell": {
  8. "init_hook": [
  9. "pipenv install --dev",
  10. "pipenv shell"
  11. ],
  12. "scripts": {
  13. "serve": [
  14. "source .venv/bin/activate",
  15. "uvicorn src.app:app --reload --host 0.0.0.0 --port 8000"
  16. ]
  17. }
  18. },
  19. "env": {}
  20. }