2023-12-12 05:54:34 +00:00
|
|
|
# SBT Project
|
|
|
|
|
2023-12-26 07:09:31 +00:00
|
|
|
## Local development
|
|
|
|
|
|
|
|
- Prepare `.env` file.
|
|
|
|
- Run for local development:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
docker compose --profile local up -d
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run tests
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip3 install pytest requests
|
|
|
|
IDP_HOST=https://sbt.idp.sdsrv.ai IDP_USERNAME=<username> IDP_PASSWORD=<password> python3 -m pytest --log-cli-level=DEBUG --capture=sys tests
|
|
|
|
```
|
|
|
|
|