Skip to content

Commit a6ca7b2

Browse files
committed
Document running a service locally
1 parent 6b92b13 commit a6ca7b2

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,24 @@ make test-lint
8282
make test-unit ARGS="-v"
8383
```
8484

85+
### Running locally with Docker
86+
87+
```bash
88+
docker compose up --build
89+
```
90+
91+
### Running an individual service locally
92+
93+
```bash
94+
cp .env.development .env
95+
```
96+
97+
Edit `.env` to set the required environment variables for the service you want to run, e.g. `PACS_DB_PATH` for the PACS server.
98+
99+
```bash
100+
PYTHONPATH=./src uv run python -m pacs_main
101+
```
102+
85103
### Code Quality
86104

87105
Pre-commit hooks run automatically on commit:

0 commit comments

Comments
 (0)