forked from anagrambuild/mobile-pwa-with-passkey-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.sample
39 lines (34 loc) · 1.28 KB
/
.env.sample
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
# Push notifications
WEB_PUSH_EMAIL=mailto:[email protected] # Use this when testing locally
WEB_PUSH_SUBJECT= # Should be the production domain of your website
WEB_PUSH_PRIVATE_KEY=
NEXT_PUBLIC_WEB_PUSH_PUBLIC_KEY=
# Database / persistance
DATABASE_URL=mysql://user:password@<instance-connection-name>/kekwallet?ssl=true
# Google Cloud SQL
CLOUD_SQL_HOST=
CLOUD_SQL_USER=
CLOUD_SQL_PASSWORD=
CLOUD_SQL_DATABASE=
CLOUD_SQL_CONNECTION_NAME=
# Hyperliquid
# Note: RPC endpoints are managed by the SDK:
# - Mainnet: https://api.hyperliquid.xyz
# - Testnet: https://api.hyperliquid-testnet.xyz
HYPERLIQUID_AGENT_PRIVATE_KEY=
HYPERLIQUID_WALLET_ADDRESS=
HYPERLIQUID_TESTNET=true # Set to false for mainnet, true for testnet
# Clerk web2 authentication
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/
# Turnkey (passkey wallet)
NEXT_PUBLIC_TURNKEY_API_BASE_URL=https://api.turnkey.com
TURNKEY_API_BASE_URL=https://api.turnkey.com
TURNKEY_BACKEND_API_KEY_NAME=api-demo
TURNKEY_ORGANIZATION_ID="<Turnkey organization ID>"
TURNKEY_API_PUBLIC_KEY="<Turnkey API Public Key (that starts with 02 or 03)>"
TURNKEY_API_PRIVATE_KEY="<Turnkey API Private Key>"