Skip to content

Commit

Permalink
Merge pull request #2564 from pamelafox/exampledoc
Browse files Browse the repository at this point in the history
Fix commands in README for running the example
  • Loading branch information
samuelhwilliams authored Nov 12, 2024
2 parents 1cdd355 + a7d2997 commit 1779dbc
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,26 @@ To run the examples in your local environment:
python3 -m venv .venv
source .venv/bin/activate
```
3. Install requirements:

3. Navigate into the SQLAlchemy example folder:

```bash
pip install -r examples/sqla/requirements.txt
cd examples/sqla
```
4. Run the application:

4. Install requirements:

```bash
python examples/sqla/run_server.py
pip install -r requirements.txt
```
5. Check the Flask app running on <http://localhost:5000>.

5. Run the application:

```bash
python app.py
```

6. Check the Flask app running on <http://localhost:5000>.

## Documentation

Expand Down

0 comments on commit 1779dbc

Please sign in to comment.