Skip to content
Merged
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
21 changes: 21 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Required variables for Next.js to run


NEXT_PUBLIC_SUPABASE_URL=https://xxx.supabase.co/rest/v1/
NEXT_PUBLIC_SUPABASE_ANON_KEY=sb_publishable....

# Supabase service role key (server-only, never expose to the browser). From Supabase dashboard: Settings > API > service_role secret
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here


# Reown AppKit Project ID (Get from https://cloud.reown.com)
NEXT_PUBLIC_REOWN_PROJECT_ID=your_reown_project_id_here

# Prism Database connection string (from Neon DB)
DATABASE_URL="postgres://user:password@hostname/db?sslmode=require"

# Admin configuration (The address allowed to approve/revoke ENS names)
NEXT_PUBLIC_ADMIN_ADDRESS=0xYourWalletAddressHere

# NameStone Configuration (Get from https://namestone.com)
NAMESTONE_API_KEY=your_namestone_api_key_here
33 changes: 30 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
allowedDevOrigins: ["*.ngrok-free.app", "*.ngrok-free.dev", "*.loca.lt"],
};

export default nextConfig;
Loading
Loading