launch.json 337 B

1234567891011
  1. {
  2. "version": "0.0.1",
  3. "configurations": [
  4. {
  5. "name": "api",
  6. "runtimeExecutable": "bash",
  7. "runtimeArgs": ["-c", "cd /Users/samlee/Documents/works/Create-knowledge-find-decode && PYTHONPATH=. CK_ENV_FILE=.env uv run uvicorn creation_knowledge.api:app --host 127.0.0.1 --port 8126"],
  8. "port": 8126
  9. }
  10. ]
  11. }