Files
explore/docker-compose.lux.yml
Zach KellingandHanzo Dev 10beed1983 Add LUX branding and monochromatic theme
- Configure Inter font as default for all text
- Create monochromatic black/white/grey color scheme
- Add LUX logo and favicon
- Set up GitHub Action for automated builds
- Configure production environment variables


Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2025-06-26 21:28:57 +00:00

55 lines
2.0 KiB
YAML

version: '3.8'
services:
frontend:
build:
context: .
dockerfile: Dockerfile
image: ghcr.io/luxfi/explore:lux-custom
container_name: explore-lux
restart: unless-stopped
ports:
- "3000:3000"
environment:
# Network Configuration
NEXT_PUBLIC_NETWORK_NAME: LUX Network
NEXT_PUBLIC_NETWORK_SHORT_NAME: LUX
NEXT_PUBLIC_NETWORK_ID: 96369
NEXT_PUBLIC_NETWORK_CURRENCY_NAME: LUX
NEXT_PUBLIC_NETWORK_CURRENCY_SYMBOL: LUX
NEXT_PUBLIC_NETWORK_CURRENCY_DECIMALS: 18
# API Configuration
NEXT_PUBLIC_API_HOST: api-explore.lux.network
NEXT_PUBLIC_API_PROTOCOL: https
NEXT_PUBLIC_API_BASE_PATH: /
NEXT_PUBLIC_API_WEBSOCKET_PROTOCOL: wss
# App Configuration
NEXT_PUBLIC_APP_HOST: explore.lux.network
NEXT_PUBLIC_APP_PROTOCOL: https
NEXT_PUBLIC_IS_TESTNET: false
# Branding
NEXT_PUBLIC_NETWORK_LOGO: /logos/lux-logo-white.png
NEXT_PUBLIC_NETWORK_LOGO_DARK: /logos/lux-logo-white.png
NEXT_PUBLIC_NETWORK_ICON: /logos/lux-logo-white.png
NEXT_PUBLIC_NETWORK_ICON_DARK: /logos/lux-logo-white.png
NEXT_PUBLIC_OG_IMAGE_URL: /logos/lux-logo-white.png
# Font Configuration
NEXT_PUBLIC_FONT_FAMILY_HEADING: '{"name":"Inter","url":"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"}'
NEXT_PUBLIC_FONT_FAMILY_BODY: '{"name":"Inter","url":"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"}'
# Theme
NEXT_PUBLIC_COLOR_THEME_DEFAULT: dark
# Features
NEXT_PUBLIC_HOMEPAGE_CHARTS: '["daily_txs", "coin_price", "market_cap"]'
NEXT_PUBLIC_IS_ACCOUNT_SUPPORTED: 'true'
# Stats
NEXT_PUBLIC_STATS_API_HOST: https://api-explore.lux.network/api/stats
NEXT_PUBLIC_VISUALIZE_API_HOST: https://api-explore.lux.network/api/visualize
NEXT_PUBLIC_CONTRACT_INFO_API_HOST: https://api-explore.lux.network
NEXT_PUBLIC_ADMIN_SERVICE_API_HOST: https://api-explore.lux.network