From c22c65c124dfa4c13467185b5e718a0318d69fb6 Mon Sep 17 00:00:00 2001 From: Sukwan Lee Date: Tue, 13 Jan 2026 15:32:30 -0800 Subject: [PATCH] Update README.md Add instruction for installing uv if it doesn't exist. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5902f6..9f23ae7 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,5 @@ Welcome to the Hex Web Development Interview! During the interview session, you' ## Running the app 1) Install JS dependencies with `npm install`. -2) Install Python dependencies with `uv sync`. +2) Install Python dependencies with `uv sync`. If `uv` is unavailable, first run `pip install uv`. 3) Run `npm run start`. You should be able to view the app at [http://localhost:3000/](http://localhost:3000/). It will hot reload as you make changes.