From f2dd7cbf0ec81088d875a5cb1899d871efd698a5 Mon Sep 17 00:00:00 2001 From: Krista Chan Date: Tue, 10 Mar 2026 20:21:15 -0700 Subject: [PATCH 1/5] docs: fix port to be 8000 --- apps/report-execution/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/report-execution/README.md b/apps/report-execution/README.md index 79a2c1fac1..74327fa1d6 100644 --- a/apps/report-execution/README.md +++ b/apps/report-execution/README.md @@ -40,13 +40,13 @@ ``` The application will be available at: -- API: http://localhost:8001 -- Interactive API docs (Swagger UI): http://localhost:8001/docs -- Alternative API docs (ReDoc): http://localhost:8001/redoc +- API: http://localhost:8000 +- Interactive API docs (Swagger UI): http://localhost:8000/docs +- Alternative API docs (ReDoc): http://localhost:8000/redoc Sample curl: ```sh -curl -X POST 'http://localhost:8001/report/execute' -H "accept: application/json" -H "Content-Type: application/json" -d '{ +curl -X POST 'http://localhost:8000/report/execute' -H "accept: application/json" -H "Content-Type: application/json" -d '{ "version": 1, "is_export": true, "is_builtin": true, From f40bbabb35cbaf8aeee4bd034ef8645b996c57f6 Mon Sep 17 00:00:00 2001 From: krista-skylight Date: Wed, 11 Mar 2026 09:46:20 -0700 Subject: [PATCH 2/5] Update apps/report-execution/README.md Co-authored-by: Mary McGrath --- apps/report-execution/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/report-execution/README.md b/apps/report-execution/README.md index 74327fa1d6..7a225b613a 100644 --- a/apps/report-execution/README.md +++ b/apps/report-execution/README.md @@ -36,7 +36,7 @@ 1. Start the FastAPI development server with [Uvicorn](https://uvicorn.dev/) (the default ASGI server program shipped with FastAPI): ```bash - uv run uvicorn src.main:app + uv run --env-file .env uvicorn src.main:app ``` The application will be available at: From 4a1f0362d58599a64150f01959bcfc7417f9cf5b Mon Sep 17 00:00:00 2001 From: krista-skylight Date: Wed, 11 Mar 2026 09:46:29 -0700 Subject: [PATCH 3/5] Update apps/report-execution/README.md Co-authored-by: Mary McGrath --- apps/report-execution/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/report-execution/README.md b/apps/report-execution/README.md index 7a225b613a..08fa93cb1d 100644 --- a/apps/report-execution/README.md +++ b/apps/report-execution/README.md @@ -16,7 +16,7 @@ uv sync --frozen ``` -1. (Optional) Create a `.env` file from the `sample.env`, if you'd like to configure the application's port or host during local development (particularly helpful if you're running outside of Docker). _NOTE: You'll need to manually load the env (`export $(xargs <.env)`), add `--env-file .env` to `uv` commands, or install and configure [direnv](https://direnv.net/) (or an equivalent shell extension) in order to make these environment variables available to the application._ +1. Create a `.env` file from the `sample.env`, if you'd like to configure the application's port or host during local development (particularly helpful if you're running outside of Docker). _NOTE: You'll need to manually load the env (`export $(xargs <.env)`), add `--env-file .env` to `uv` commands, or install and configure [direnv](https://direnv.net/) (or an equivalent shell extension) in order to make these environment variables available to the application._ ```sh cp sample.env .env From cfab915524f012c09f20d443ec3d1a26ef5e6990 Mon Sep 17 00:00:00 2001 From: Krista Chan Date: Wed, 11 Mar 2026 09:53:13 -0700 Subject: [PATCH 4/5] docs: Add .env to .gitignore --- apps/report-execution/.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/report-execution/.gitignore b/apps/report-execution/.gitignore index 0142512615..b57f62d654 100644 --- a/apps/report-execution/.gitignore +++ b/apps/report-execution/.gitignore @@ -1,4 +1,5 @@ __pycache__/ .ruff_cache/ .pytest_cache/ -.venv/ \ No newline at end of file +.venv/ +.env \ No newline at end of file From 99f6ce45721d391c5a7dc465174b0146db8937d1 Mon Sep 17 00:00:00 2001 From: krista-skylight Date: Wed, 11 Mar 2026 10:45:21 -0700 Subject: [PATCH 5/5] chore: remove .env from .gitignore --- apps/report-execution/.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/report-execution/.gitignore b/apps/report-execution/.gitignore index b57f62d654..313ba0505c 100644 --- a/apps/report-execution/.gitignore +++ b/apps/report-execution/.gitignore @@ -2,4 +2,3 @@ __pycache__/ .ruff_cache/ .pytest_cache/ .venv/ -.env \ No newline at end of file