The React-based frontend for **FrostFlow** — an automated data engineering workflow tool.
318
# FrostFlow Frontend ❄️
This is the frontend interface for **FrostFlow**, a tool that automates the generation of dbt models, Airflow DAGs, and data quality checks from raw SQL.
This image is designed to run alongside the `frostflow-backend`.
### 🚀 Quick Start
1. Create a file named `docker-compose.yml` with the following content:
**`docker-compose.yml`**
```yaml
version: '3.8'
services:
backend:
image: alokdekadev/frostflow-backend:v1.0.0
container_name: frostflow_backend
ports:
- "8000:8000"
environment:
- PORT=8000
- ALLOWED_ORIGINS=*
restart: unless-stopped
frontend:
image: alokdekadev/frostflow-frontend:v1.0.0
container_name: frostflow_frontend
ports:
- "3000:80"
depends_on:
- backend
restart: unless-stopped
```
2. Run the application:
```bash
docker-compose up -d
```
3. Open your browser to: [http://localhost:3000](http://localhost:3000)
### 🔗 Links
- **Backend Image**: [alokdekadev/frostflow-backend](https://hub.docker.com/r/alokdekadev/frostflow-backend)
Content type
Image
Digest
sha256:c7a44f196…
Size
24.8 MB
Last updated
7 months ago
docker pull alokdekadev/frostflow-frontend