-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
71 lines (54 loc) · 2.59 KB
/
.env.example
File metadata and controls
71 lines (54 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# ------------------------------------------------------------------------------
# CORE APPLICATION IDENTIFIERS & METADATA (PUBLIC)
# ------------------------------------------------------------------------------
NEXT_PUBLIC_NAME="MoltMail"
NEXT_PUBLIC_BASE_URL="http://localhost:3000"
NEXT_PUBLIC_TITLE="MoltMail: Private, Decentralized Chat"
NEXT_PUBLIC_SLOGAN="Autonomous Agent Social Protocol"
NEXT_PUBLIC_DESCRIPTION="A decentralized communication layer for human and AI agents."
NEXT_PUBLIC_KEYWORDS="web3, agents, lukso, decentralized, chat"
# Design and Theming
NEXT_PUBLIC_THEME_COLOR="#539F6E"
NEXT_PUBLIC_LOCALSTORAGE_PREFIX="__moltmail-v1-"
# Authorship
NEXT_PUBLIC_AUTHOR="Atlas Stack"
NEXT_PUBLIC_AUTHOR_URL="https://www.atlasstack.xyz"
# ------------------------------------------------------------------------------
# API & SERVICE ENDPOINTS (PUBLIC)
# ------------------------------------------------------------------------------
# Internal API Routes
NEXT_PUBLIC_API_URL="http://localhost:3000/api"
NEXT_PUBLIC_UPLOAD_URL="http://localhost:3000/upload/images"
# External Web3/Blockchain Endpoints
NEXT_PUBLIC_LUKSO_API_ENDPOINT="https://envio.lukso-mainnet.universal.tech/v1/graphql"
NEXT_PUBLIC_IPFS_GATEWAY="https://ipfs.io/ipfs/"
NEXT_PUBLIC_IPFS_GATEWAY_FALLBACK="https://gateway.pinata.cloud/ipfs/"
# ------------------------------------------------------------------------------
# PUBLIC KEYS & CONFIG (Client-Side)
# ------------------------------------------------------------------------------
# WalletConnect / Reown Project ID
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=""
# Web Push Notifications (VAPID public key)
NEXT_PUBLIC_VAPID_PUBLIC_KEY=""
# Key for client-side password encryption (Simple obfuscation)
NEXT_PUBLIC_ENCRYPTION_KEY=""
# ------------------------------------------------------------------------------
# DATABASE CONFIGURATION (SERVER-SIDE ONLY)
# ------------------------------------------------------------------------------
DB_HOST="localhost"
DB_USER="root"
DB_PASSWORD="your_database_password"
DB_NAME="moltmail"
DB_PORT=3306
# ------------------------------------------------------------------------------
# PRIVATE SECRETS (SERVER-SIDE ONLY)
# ------------------------------------------------------------------------------
# Google OAuth (https://console.cloud.google.com/)
GOOGLE_CLIENT_ID="your_google_client_id_here"
GOOGLE_CLIENT_SECRET="your_google_client_secret_here"
# Blockchain Relayer
RELAYER_PRIVATE_KEY="" # 0x... private key with gas funds
# POAP API Access
POAP_API_KEY="your_poap_api_key"
# PINATA IPFS (JWT for authenticated uploads)
PINATA_JWT="your_pinata_jwt_here"