fitaiProto/apps/mobile/.env.example
2026-03-11 01:43:19 +01:00

42 lines
1.7 KiB
Plaintext

# =============================================================================
# FitAI Mobile App Environment Configuration
# =============================================================================
# Copy this file to .env and fill in the values
# All variables prefixed with EXPO_PUBLIC_ are accessible in the app code
# =============================================================================
# Clerk Authentication
# =============================================================================
# Get your publishable key from https://dashboard.clerk.com
# Navigate to: API Keys > Copy Publishable Key
# IMPORTANT: Use the correct key for your environment (development/production)
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_your_publishable_key_here
# =============================================================================
# API Configuration
# =============================================================================
# Backend API base URL (without /api suffix)
#
# Options:
# 1. Local development (emulator/simulator on same machine):
# EXPO_PUBLIC_API_URL=http://localhost:3000
#
# 2. Physical device or external testing (using ngrok):
# EXPO_PUBLIC_API_URL=https://your-ngrok-url.ngrok-free.app
# Start ngrok: ngrok http 3000
#
# 3. Local network (physical device on same WiFi):
# EXPO_PUBLIC_API_URL=http://192.168.1.100:3000
# Replace with your computer's local IP address
#
# 4. Production:
# EXPO_PUBLIC_API_URL=https://api.yourapp.com
#
EXPO_PUBLIC_API_URL=http://localhost:3000
# =============================================================================
# App Configuration (Optional)
# =============================================================================
EXPO_PUBLIC_APP_NAME=FitAI
EXPO_PUBLIC_APP_VERSION=1.0.0