-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
36 lines (31 loc) · 1.71 KB
/
.env
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
# OAuth application configs. Configure the ones you want to support. They'll serve as both the auth
# mechanism for this app and transaction signing mechanism (zkLogin). Note that if you have multiple
# providers configured, the same person will be considered a different user for each provider they
# log in with (with different zkLogin wallets), even if they may share the same email.
#
# Refer to this link for instructions on setting up these OAuth applications:
# https://docs.sui.io/guides/developer/cryptography/zklogin-integration/developer-account
#
# NEXT_PUBLIC_GOOGLE_CLIENT_ID=''
# NEXT_PUBLIC_FACEBOOK_CLIENT_ID=''
# NEXT_PUBLIC_TWITCH_CLIENT_ID=''
# NEXT_PUBLIC_APPLE_CLIENT_ID=''
# Example command to generate random secrets:
# openssl rand -hex 32
#
# IRON_SESSION_SECRET='Randomly generated secret to encrypt your app session cookie'
# ADMIN_WALLET_SECRET='Randomly generated secret to encrypt your admin wallet on Shinami. MUST NOT change'
# ADMIN_WALLET_ID='Defaults to demo:admin'
# Used to determine whether a user is allowed to sign in.
# If left empty, no user is allowed.
# If set to the special value of ALLOW_ALL, all users with a verified email are allowed.
# USER_RPC_URL=''
# Obtain your Shinami access keys from https://app.shinami.com.
#
# SHINAMI_SUPER_ACCESS_KEY='Super key with access to Shinami node, gas station, and wallet services. Only used on backend.'
# NEXT_PUBLIC_SHINAMI_NODE_ACCESS_KEY='Shinami node only access key. Exposed to frontend.'
# 'devnet', 'testnet', or 'mainnet'
NEXT_PUBLIC_SUI_NETWORK='testnet'
# Must match the network above
NEXT_PUBLIC_PACKAGE_ID='0x607df06bc57d6e12111a44ea6f62b738c11ef207c5ecc201f103bbf7d79ed3e3'
# ADMIN_CAP='Must be a unique instance on each backend server'