19 lines
338 B
Markdown
19 lines
338 B
Markdown
# SBT Project
|
|
|
|
## 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
|
|
```
|
|
|