18 lines
1.1 KiB
Bash
18 lines
1.1 KiB
Bash
|
|
# ─────────────────────────────────────────────────────────
|
||
|
|
# Pipely Web — Environment Variables
|
||
|
|
# ─────────────────────────────────────────────────────────
|
||
|
|
# Copy this file to .env and adjust values for your environment:
|
||
|
|
# cp .env.example .env
|
||
|
|
# ─────────────────────────────────────────────────────────
|
||
|
|
|
||
|
|
# ── API Server ───────────────────────────────────────────
|
||
|
|
|
||
|
|
# Base URL for the OTA Manifest Server API.
|
||
|
|
# Default: https://pipely.onixbyte.com/
|
||
|
|
# Development: http://localhost:8080
|
||
|
|
VITE_API_BASE_URL=http://localhost:5001/api
|
||
|
|
|
||
|
|
# Redux Persistent storage location
|
||
|
|
# Options: `local` (default), `session`
|
||
|
|
VITE_REDUX_STORAGE=local
|