-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
38 lines (31 loc) · 1.11 KB
/
Copy pathenv.example
File metadata and controls
38 lines (31 loc) · 1.11 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
IPFS_API_URL="http://127.0.0.1:5001"
PROJECT_ID=
PROJECT_NAME=
GCS_BUCKET_NAME=
BQ_DATASET=
BQ_TABLE=
SERVICE_ACCOUNT=
# JWT Authentication Settings
# You should generate a secure random secret key for production
SECRET_KEY=your_super_secure_secret_key_change_this_in_production
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Admin User Credentials
# These will be used to create the initial admin user if it doesn't exist
ADMIN_USERNAME=admin
ADMIN_PASSWORD=adminpassword # Change this to a strong password
ADMIN_EMAIL=admin@example.com
# IPFS Settings
# URL for the IPFS API (typically local IPFS node)
IPFS_API_URL=http://127.0.0.1:5001
# Aptos Blockchain Settings
# For local development/testing
APTOS_NODE_URL=http://localhost:8080/v1
APTOS_FAUCET_URL=http://localhost:8081
# For testnet
# APTOS_NODE_URL=https://fullnode.testnet.aptoslabs.com/v1
# APTOS_FAUCET_URL=https://faucet.testnet.aptoslabs.com
# Module Settings
# The admin account will automatically be used to publish the Move module
# No need to specify a separate private key
MODULE_ADDRESS=my_addr # This will be replaced by the admin's address automatically