- Switch @bytelyst/* to file:../vendor/* references; add vendor/ tree;
update both Dockerfile stages to COPY vendor/ before pnpm install
- docker-compose.yml: add healthcheck on backend /health/live; use
backend/.env as env_file; env-var-driven web build args with prod defaults;
GITEA_NPM_TOKEN uses ${:-} safe default; web depends_on service_healthy
- Add docker-compose.dev.yml hot-reload overlay
- Add scripts/dev.sh convenience script for Docker+local-web hybrid
- .npmrc: add replace-registry-host=always for Gitea Docker-internal rewrite
- Update smoke-release.sh and root package.json docker:* scripts
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
655 B
Plaintext
14 lines
655 B
Plaintext
# =============================================================================
|
|
# ByteLyst Trading — Mobile App Environment Configuration
|
|
# Copy this file to .env.local and fill in your values.
|
|
# EXPO_PUBLIC_ variables are embedded at build time — do not put secrets here.
|
|
# =============================================================================
|
|
|
|
# --- Backend API ---
|
|
# URL of the deployed trading backend. Must not have a trailing slash.
|
|
EXPO_PUBLIC_TRADING_API_URL=http://localhost:4018/api
|
|
|
|
# --- Platform Service ---
|
|
# URL of the ByteLyst platform-service (auth, kill-switch, telemetry).
|
|
EXPO_PUBLIC_PLATFORM_URL=http://localhost:4003/api
|