From b1fb87382addad5cd3b8e7bd0bf10d97ef091afb Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 17 Aug 2025 20:23:24 -0400 Subject: [PATCH] Update README --- README.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index efba6b4..e64b563 100644 --- a/README.md +++ b/README.md @@ -20,16 +20,19 @@ This project has some dependencies that need to be installed manually to your sy - [ffmpeg](https://ffmpeg.org/) ## Environment Setup -In the cloned project directory, setup a Python environment and install the -necessary dependencies: +First, clone this repo: -`python -m venv .venv` +`git clone https://littlesong.place/git/littlesongplace.git` -`. .venv/bin/activate` (or `.venv\Scripts\activate` on Windows) +Then, in the cloned project directory, setup a Python environment and install +the necessary dependencies: -`pip install -e .` - -`pip install -r dev-requirements.txt` +
+python -m venv .venv
+. .venv/bin/activate     # (or .venv\Scripts\activate on Windows)
+pip install -e .
+pip install -r dev-requirements.txt
+
## Running Run the app locally (accessible in a browser at localhost:5000): -- 2.39.5