Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 40 additions & 24 deletions dashboard/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.0",
"react-router-dom": "^7.18.2",
"recharts": "^2.12.0"
},
"devDependencies": {
Expand Down
7 changes: 6 additions & 1 deletion docs/first-time-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,15 @@ python -m pip install magic-lab-observer-cli==0.1.1
Install the backend distribution separately when embedding or operating the
API outside the Compose quickstart:

The default backend configuration uses SQLite, so include its database driver:

```bash
python -m pip install magic-lab-observer-backend==0.1.1
python -m pip install "magic-lab-observer-backend[sqlite]==0.1.1"
```

For PostgreSQL, install `magic-lab-observer-backend==0.1.1` and set
`DATABASE_URL` to a PostgreSQL URL before importing or starting the application.

Contributors can instead install editable packages from a checkout:

```bash
Expand Down