forked from AquaStark/Aqua-Stark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (41 loc) · 1.7 KB
/
Copy path.env.example
File metadata and controls
56 lines (41 loc) · 1.7 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
# 🌊 Aqua Stark - Local Development Environment
# Copy this file to .env and update with your values
# =============================================================================
# BLOCKCHAIN CONFIGURATION
# =============================================================================
# Local Katana RPC endpoint (StarkNet devnet)
KATANA_RPC_URL=http://localhost:5050
# Local Torii indexer endpoint
TORII_URL=http://localhost:8080
# World contract address (will be set after sozo migrate)
WORLD_ADDRESS=
# =============================================================================
# BACKEND CONFIGURATION
# =============================================================================
# Supabase configuration (use test project for development)
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key-here
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
# Redis connection (local or cloud)
REDIS_URL=redis://localhost:6379
# Server configuration
PORT=3000
NODE_ENV=development
# =============================================================================
# FRONTEND CONFIGURATION
# =============================================================================
# Blockchain endpoints (same as above, but with VITE_ prefix)
VITE_KATANA_RPC_URL=http://localhost:5050
VITE_TORII_URL=http://localhost:8080
VITE_WORLD_ADDRESS=
# Backend API endpoint
VITE_API_URL=http://localhost:3000
# Development mode
VITE_DEV_MODE=true
# =============================================================================
# DEVELOPMENT SETTINGS
# =============================================================================
# Enable debug logging
DEBUG=true
# Log level (error, warn, info, debug)
LOG_LEVEL=debug