[Application Development] ERROR [ui 6/6] RUN npx prisma generate --schema schema.prisma #115
Replies: 2 comments 2 replies
-
After running |
Beta Was this translation helpful? Give feedback.
0 replies
-
@L2nitant can you help us out and clarify your question by editing your original post?
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue Description
I am trying to run indexer/ui on my op-stack chain with docker compose up.
chain is currently running on sepolia network (server) and blockscout on my local
.env fle
INDEXER_L1_ETH_RPC=alchemy url
INDEXER_L2_ETH_RPC=l2 url
DATABASE_URL=db URL
.toml file
[chain]
preset = $INDEXER_CHAIN_PRESET
L1 Config
l1-polling-interval = 0
l1-header-buffer-size = 0
l1-confirmation-depth = 0
l1-starting-height = 0
L2 Config
l2-polling-interval = 0
l2-header-buffer-size = 0
l2-confirmation-depth = 0
[rpcs]
l1-rpc = li RPC
l2-rpc = l2 RPC
[db]
host = "localhost"
port = 5432
user = "postgres"
password = "paswword"
name = "name"
[http]
host = "127.0.0.1"
port = 8080
[metrics]
host = "127.0.0.1"
port = 7300
After running docker compose up
these are my logs
Beta Was this translation helpful? Give feedback.
All reactions