From 384dd2edea20103881fa72c5bd5f77a4142e9e13 Mon Sep 17 00:00:00 2001 From: Daniel Kislitsya Date: Mon, 25 May 2026 22:09:42 +0200 Subject: [PATCH] docs: clarify template environment configuration --- templates/minikit-nextjs/.template.env | 11 +++++++++++ templates/onchainkit-nextjs/.template.env | 8 ++++++++ 2 files changed, 19 insertions(+) diff --git a/templates/minikit-nextjs/.template.env b/templates/minikit-nextjs/.template.env index 245c1856b1..6d5be12f9c 100644 --- a/templates/minikit-nextjs/.template.env +++ b/templates/minikit-nextjs/.template.env @@ -1,3 +1,14 @@ +# Public project name shown by the template UI. NEXT_PUBLIC_PROJECT_NAME="template-next-basic" + +# Coinbase Developer Platform API key used by OnchainKit. +# Create one at https://portal.cdp.coinbase.com/ NEXT_PUBLIC_ONCHAINKIT_API_KEY="" + +# Public URL of your Mini App. +# Use your deployed app URL in production. NEXT_PUBLIC_URL="" + +# Network note: +# This template is configured for Base mainnet by default in app/rootProvider.tsx. +# For Base Sepolia development, update the chain configuration there to `baseSepolia`. \ No newline at end of file diff --git a/templates/onchainkit-nextjs/.template.env b/templates/onchainkit-nextjs/.template.env index 56c8b23ebb..fdb54ade8f 100644 --- a/templates/onchainkit-nextjs/.template.env +++ b/templates/onchainkit-nextjs/.template.env @@ -1,2 +1,10 @@ +# Public project name shown by the template UI. NEXT_PUBLIC_PROJECT_NAME="template-next-basic" + +# Coinbase Developer Platform API key used by OnchainKit. +# Create one at https://portal.cdp.coinbase.com/ NEXT_PUBLIC_ONCHAINKIT_API_KEY="" + +# Network note: +# This template is configured for Base mainnet by default in app/rootProvider.tsx. +# For Base Sepolia development, update the chain configuration there to `baseSepolia`. \ No newline at end of file