fix: install

This commit is contained in:
dextmorgn
2025-10-24 11:04:38 +02:00
parent 42ec611501
commit 9c645f2c59
3 changed files with 11 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ api:
cd $(PROJECT_ROOT)/flowsint-api && poetry run uvicorn app.main:app --host 0.0.0.0 --port 5001 --reload
frontend:
@echo "🚀 Starting frontend in Docker and opening browser..."
@echo "🚀 Starting frontend and opening browser..."
@docker compose up -d flowsint-app
@bash -c 'until curl -s http://localhost:5173 > /dev/null 2>&1; do sleep 1; done; open http://localhost:5173 2>/dev/null || xdg-open http://localhost:5173 2>/dev/null || echo "✅ Frontend ready at http://localhost:5173"'

View File

@@ -6,7 +6,15 @@ A modular investigation and reconnaissance platform with clean separation of con
## Get started
Don't want to read ? Got it. Here's your install instructions:
Don't want to read ? Got it. Here's your install instructions:
#### 1. Install pre-requisites
- Python 3.10+
- Poetry (for dependency management)
- Docker (for some tools)
#### 2. Run install command
```bash
git clone https://github.com/reconurge/flowsint.git

View File

@@ -48,8 +48,7 @@ services:
networks:
- flowsint_network
# Flowsint frontend app (development)
flowsint-app:
app:
build:
context: ./flowsint-app
dockerfile: Dockerfile.dev