Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# Runbook: Запуск проекта
---
## Первый запуск
```bash
# 1. Клонировать репозиторий
git clone <repo> && cd <repo>
# 2. Настроить окружение
cp .env.example .env
# Редактировать .env: JWT_SECRET_KEY, DATABASE_URL
# 3. Установить зависимости
pip install -r requirements.txt
# 4. Запустить
uvicorn app.main:app --reload --host 0.0.0.0 --port 8020
```
## Проверка
```bash
curl http://localhost:8020/health
# → {"status": "healthy"}
curl http://localhost:8020/docs
# → Swagger UI
```
## Остановка
```bash
Ctrl+C # или kill $(pgrep -f uvicorn)
```