Skip to content
Draft
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
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ coverage/
coverage.json
gasReporterOutput.json

# Deployment logs
logs/
# Netlify build output
.netlify/
build/

.svelte-kit/
temp/**
deployed-addresses.json
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node_modules
.svelte-kit
dist
build
.netlify
*.log
package-lock.json
PROOF_PIPELINE_INTEGRATION.md
30 changes: 30 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build]
command = "npm run compile:contracts && npm run build"
publish = "build"

[build.environment]
NODE_VERSION = "20"

# Required environment variables – set these in the Netlify UI or via `netlify env:set`
# VITE_CHAIN_ID
# VITE_RPC_URL
# VITE_TOKEN_ADDR
# VITE_CAMPAIGN
# VITE_FLOOR_SCORE
# VITE_CAP_SCORE
# VITE_MIN_PAYOUT
# VITE_MAX_PAYOUT
# VITE_CURVE
# VITE_AIRDROP_ECDSA_ADDR
# VITE_AIRDROP_ZK_ADDR (optional)
# VITE_VERIFIER_ADDR (optional)
# VITE_API_BASE (optional – leave unset to run in mock mode)
# VITE_WALLETCONNECT_PROJECT_ID
# PUBLIC_CHAIN_ID
# PUBLIC_RPC_URL
# PUBLIC_TOKEN_ADDR
# PUBLIC_CAMPAIGN
# PUBLIC_WALLETCONNECT_PROJECT_ID
# SENTRY_ORG (optional)
# SENTRY_PROJECT (optional)
# SENTRY_AUTH_TOKEN (optional)
Loading
Loading