API for Python Background Check Demo App
pip install -r requirements.py
```touch config.ini``
It should have the following sections and info:
[current]
environment=development
[DEFAULT]
temporalPath="localhost:7233"
[development]
temporalPath="localhost:7233"
[production]
temporalPath="localhost:7233"
Replace the temporalPath
params to fit your environment
In one terminal/process, start the temporalio worker from this app's root directory:
python worker.py
In another terminal/process, start fast api from this app's root directory:
uvicorn fast:app --reload
python -m pytest --cache-clear