# API Configuration
NEXT_PUBLIC_API_URL=http://localhost:3001
NEXT_PUBLIC_WS_URL=ws://localhost:3001
# Wallets and Authentication
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=your_walletconnect_project_id
# Feature Flags
NEXT_PUBLIC_ENABLE_TESTNET=true
NEXT_PUBLIC_ENABLE_AUTONOMOUS_MODE=true
# Install server dependencies using Bun (recommended)
cd server
bun install
# Alternatively, use npm
# npm install
# Install frontend dependencies
cd ../frontend
bun install
# Alternatively, use npm
# npm install
# Build the server
cd server
bun run build
# or npm run build
# Build the frontend
cd ../frontend
bun run build
# or npm run build
# Start the server in dev mode
cd server
bun run dev
# or npm run dev
# In a separate terminal, start the frontend
cd frontend
bun run dev
# or npm run dev
# Start the server in production mode
cd server
bun run start
# or npm run start
# Start the frontend in production mode
cd frontend
bun run start
# or npm run start