https://github.com/guacsec/trustify-scale-test-runs
https://github.com/guacsec/trustify-scale-test-runs
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/guacsec/trustify-scale-test-runs
- Owner: guacsec
- Created: 2024-07-25T08:46:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-10T03:09:01.000Z (11 months ago)
- Last Synced: 2025-09-10T07:01:47.172Z (11 months ago)
- Language: HTML
- Homepage: https://www.trustification.io/trustify-load-test-runs/
- Size: 7.21 MB
- Stars: 2
- Watchers: 11
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Running trustify load tests
The goal is to have load tests, which can be re-run over time to see the evolution of Trustify's performance.
## Running it locally
After clone, run:
```bash
cp publish/baseline.json baseline/
```
Build the containers once:
```bash
podman compose -f compose.yaml build
```
Then run the test:
```bash
podman compose -f compose.yaml run loadtests
```
After the test has run, clean up:
```bash
podman compose -f compose.yaml down
```
## Wait, there is more
### Start a DB instance with an imported dump
To start up a database instance with the imported dump, run the following commands:
```bash
podman compose -f compose.yaml build
podman compose -f compose.yaml up trustify-migrate
```