Skip to content

Commit

Permalink
Add a hint how to run the app without Celery (#10)
Browse files Browse the repository at this point in the history
This is useful for quick experimenting.
  • Loading branch information
psss authored Oct 24, 2024
1 parent db281e0 commit efb5d79
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ podman-compose up --build

Add `-d` for the service to run in the background.

In order to quickly experiment without using Celery use this:

```bash
USE_CELERY=false CLONE_DIR_PATH=/tmp/test uvicorn api:app --reload --host 0.0.0.0 --port 8000
```

## Tests

To run the tests, use the `pytest` command (assuming the service is running).
Expand Down

0 comments on commit efb5d79

Please sign in to comment.