An open API service indexing awesome lists of open source software.

https://github.com/octavian451/locust_poc

A PoC project demonstrating Locust with Docker Compose
https://github.com/octavian451/locust_poc

docker-compose fastapi locust

Last synced: 23 days ago
JSON representation

A PoC project demonstrating Locust with Docker Compose

Awesome Lists containing this project

README

          

# Setup environment
```bash
poetry install
```

# Start the server
```bash
docker compose up --build
```

# Send requests to the server
```bash
curl -X GET localhost:8000
```

# Start locust server
```bash
poetry run locust -f ./load_test.py
```