environment variables fixed

This commit is contained in:
2025-07-04 14:24:35 +03:00
parent 9f87ea5995
commit 4d7b5019d3
13 changed files with 136 additions and 20 deletions

View File

@@ -69,3 +69,21 @@ No additional environment variables are required to run the application in devel
## Browser Support
The application is optimized for modern browsers that support ES6+ features.
## Environment Configuration
The application uses environment variables for configuration. To set up your environment:
1. Copy `.env.example` to `.env`:
```bash
cp .env.example .env
```
2. Edit `.env` and set your environment variables:
```env
VITE_API_URL=http://your-api-server:port
```
The following environment variables are available:
- `VITE_API_URL`: The URL of the API server (default: http://141.196.166.241:8003)