forked from penumbra-zone/cuiloa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
35 lines (25 loc) · 834 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
set dotenv-load
default:
just --list
dev:
npm run dev
build:
npm run build
start: build
npm run start
lint:
npm run lint
pgtyped-cli:
@echo "Starting pgtyped with DATABASE_URL: $DATABASE_URL"
npx pgtyped -w -c pgtyped.config.json
# Download the postgres db schema for CometBFT event indexing. See docs at
# https://docs.cometbft.com/v0.37/app-dev/indexing-transactions#postgresql
update-cometbft-schema:
curl -o deploy/postgres-cometbft-schema.sql -sSf "https://raw.githubusercontent.com/cometbft/cometbft/v0.37.2/state/indexer/sink/psql/schema.sql"
container:
podman build -t ghcr.io/penumbra-zone/cuiloa .
compose:
docker compose up
podman-compose:
podman compose down || true
podman-compose up --build --abort-on-container-exit --force-recreate --renew-anon-volumes --remove-orphans --pull-always