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

fix: small misc #120

Merged
merged 2 commits into from
Jan 21, 2025
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ Developers can run some or all services locally using Docker Swarm, or even bare
One combination is running just postgres locally using Docker, eg:

```bash
docker run --rm -ti -p 5432:5432 postgres:15
docker run --rm -ti -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:15
```

and then running the FE and BE services directly (refer to Cron jobs below and `yarn next dev` in `package.json`).
and then running the FE and BE services directly (refer to Cron jobs below and `yarn dev` in `package.json`).

Alternatively, one can run services using Docker Swarm, but this lacks hot-reloading.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"ens:download": "API3TRACKER_ENDPOINT=${API3TRACKER_ENDPOINT:-`chainstate --endpoints -t alchemy,mainnet`} TS_NODE_PROJECT=./tsconfig.cli.json yarn ts-node -T cli.ts ens download",
"lint:eslint": "eslint --report-unused-disable-directives --ext .ts,.tsx --max-warnings 0 .",
"lint:next": "next lint",
"lint:prettier": "prettier --check \"./**/*.{ts,js,md,json}\"",
"lint:prettier": "prettier --check \"./**/*.{ts,tsx,js,md,json}\"",
"lint:tsc": "tsc --build .",
"lint": "yarn run lint:eslint && yarn run lint:next && yarn run lint:prettier && yarn run lint:tsc",
"logs:reset": "TS_NODE_PROJECT=./tsconfig.cli.json yarn ts-node -T cli.ts logs reset",
Expand Down
Loading