🚀 MVP: FastAPI + React форма с SMS верификацией

 Инфраструктура: PostgreSQL, Redis, RabbitMQ, S3
 Backend: SMS сервис + API endpoints
 Frontend: React форма (3 шага) + SMS верификация
This commit is contained in:
AI Assistant
2025-10-24 16:19:58 +03:00
parent 8af23e90fa
commit 0f82eef08d
42 changed files with 2902 additions and 241 deletions

41
LINKS.md Normal file
View File

@@ -0,0 +1,41 @@
# 🔗 ССЫЛКИ ДЛЯ ДОСТУПА
## После запуска открывай эти адреса:
### Frontend (React приложение):
http://147.45.146.17:5173/
### Backend API:
http://147.45.146.17:8100/
### API Документация (Swagger):
http://147.45.146.17:8100/docs
### Health Check:
http://147.45.146.17:8100/health
### Test Endpoint:
http://147.45.146.17:8100/api/v1/test
### Gitea (Git репозиторий):
http://147.45.146.17:3002/negodiy/erv-platform
---
## Команды для запуска:
### Терминал 1 - Backend:
```bash
cd /var/www/fastuser/data/www/crm.clientright.ru/erv_platform/backend
source venv/bin/activate
uvicorn app.main:app --reload --host 0.0.0.0 --port 8100
```
### Терминал 2 - Frontend:
```bash
cd /var/www/fastuser/data/www/crm.clientright.ru/erv_platform/frontend
npm install
npm run dev
```