Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ REACT_APP_BASE_URL=http://localhost:9002
REACT_APP_WALLET_BASE_URL=http://localhost:9003
REACT_APP_ASSETS_BUCKET=http://localhost
REACT_APP_DEMO_MODE=false
REACT_APP_BASENAME=

# More info https://create-react-app.dev/docs/advanced-configuration
ESLINT_NO_DEV_ERRORS=true
Expand Down
7 changes: 0 additions & 7 deletions .env.production

This file was deleted.

23 changes: 23 additions & 0 deletions .env.production.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Production Environment Configuration Example
# Copy this file to .env.production and update with your actual values

# API Base URLs - Update these to your actual backend URLs
REACT_APP_BASE_URL=https://your-domain.com/panel
REACT_APP_WALLET_BASE_URL=https://your-domain.com/wallet

# Asset serving configuration
REACT_APP_ASSETS_BUCKET=https://your-domain.com

# Demo mode (set to true for demo, false for production)
REACT_APP_DEMO_MODE=false

# Router basename - where your React app will be served from
# Use empty string for root path, or /admin, /dashboard, etc.
REACT_APP_BASENAME=/front

# Public URL for static assets - should match REACT_APP_BASENAME
PUBLIC_URL=/front

# More info https://create-react-app.dev/docs/advanced-configuration
ESLINT_NO_DEV_ERRORS=true
TSC_COMPILE_ON_ERROR=true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
.env.development.local
.env.test.local
.env.production.local
.env.production

npm-debug.log*
yarn-debug.log*
Expand Down
Loading
Loading