Skip to content

Commit

Permalink
chore: consolidate env
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Sep 3, 2024
1 parent dc3e411 commit 3c605ee
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 35 deletions.
23 changes: 18 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
# L1 RPC
# L1 / L2 RPCs
L1_RPC=
# L1 Consensus RPC
L1_BEACON_RPC=
# L2 Archive Node (OP-Geth)
L2_RPC=
L2_NODE_RPC=

# SP1
SP1_PRIVATE_KEY=
# OP Proposer
L1_ETH_RPC=
BEACON_RPC=
ROLLUP_RPC=
POLL_INTERVAL=
L2OO_ADDRESS=
PRIVATE_KEY=
L2_CHAIN_ID=
MAX_CONCURRENT_PROOF_REQUESTS=
MAX_BLOCK_RANGE_PER_SPAN_PROOF=30
OP_SUCCINCT_SERVER_URL=http://op-succinct-server:3000

# Succinct Proposer
PROVER_NETWORK_RPC=
SP1_PRIVATE_KEY=
SP1_PROVER=network
SKIP_SIMULATION=true
27 changes: 0 additions & 27 deletions .env.server.example

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ data

# .env
.env
.env.server

# txt
**.txt
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
context: .
dockerfile: ./proposer/succinct/Dockerfile
env_file:
- .env.server
- .env
restart: unless-stopped
ports:
- "3000:3000"
Expand All @@ -16,7 +16,7 @@ services:
context: .
dockerfile: ./proposer/op/Dockerfile.op_proposer
env_file:
- .env.server
- .env
restart: unless-stopped
depends_on:
- op-succinct-server
Expand Down

0 comments on commit 3c605ee

Please sign in to comment.