diff --git a/.env.example b/.env.example index a45cfad..4d16953 100644 --- a/.env.example +++ b/.env.example @@ -1,8 +1,9 @@ -SUPABASE_URL=https://your-project-ref.supabase.co -SUPABASE_SERVICE_KEY=your-service-role-key -SUPABASE_ANON_KEY=your-anon-key -PAYMENT_RECEIVER=0xYourChecksumEthAddress -PRICE_PER_PIXEL_ETH=0.0001 -RESERVATION_TTL_MINUTES=15 -BASE_RPC_URL=https://mainnet.base.org -PORT=3000 +# Copy this file to .env and fill in your values. +# NEVER commit .env to source control. + +# Supabase project credentials (Settings > API in your Supabase dashboard) +VITE_SUPABASE_URL=https://YOUR_PROJECT_ID.supabase.co +VITE_SUPABASE_ANON_KEY=eyJ... + +# Ethereum wallet address that receives ETH payments (must be checksummed EIP-55) +VITE_PAYMENT_RECEIVER=0xYourWalletAddressHere diff --git a/.gitignore b/.gitignore index 8a890d5..65adb1c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,12 @@ +# Secrets β never commit these .env -*.env .env.local .env.*.local -*.bak -*.old -*.orig -*.tmp -*~ -*.swp + +# Build output +dist/ +node_modules/ + +# OS +.DS_Store +Thumbs.db diff --git a/CryptoPixels-fixed.tar.gz b/CryptoPixels-fixed.tar.gz new file mode 100644 index 0000000..c846093 Binary files /dev/null and b/CryptoPixels-fixed.tar.gz differ diff --git a/index.html b/index.html index 1f19992..45c774e 100644 --- a/index.html +++ b/index.html @@ -4,8 +4,14 @@
Selected Pixels: 0
Selected: 0 pixels | Total: 0 ETH
Price per pixel: 0.001 ETH
- - + + +