Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix steps to setup local environment #653

Merged
merged 2 commits into from
Dec 2, 2024
Merged
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
8 changes: 5 additions & 3 deletions apps/docs/src/app/docs/running-blobscan-locally/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,18 @@ Configure the [environment variables](/docs/environment) accordingly, including

## Run

Then run the development command:
Run the development command:

```shell
pnpm dev
```

Lastly, create the database schema:
Lastly, apply all database migrations and optionally, add some fixture data:

```shell
pnpm db:generate
cd packages/db
pnpm db:migrate
pnpm db:seed
PabloCastellano marked this conversation as resolved.
Show resolved Hide resolved
```

## Metrics aggregation
Expand Down
Loading