Modern ERP Reports Application with microservices architecture Tech Stack: - Backend: FastAPI + python-oracledb (Oracle DB integration) - Frontend: Vue.js 3 + PrimeVue + Vite - Telegram Bot: python-telegram-bot + SQLite - Infrastructure: Shared database pool, JWT authentication, SSH tunnel Features: - FastAPI backend with async Oracle connection pool - Vue.js 3 responsive frontend with PrimeVue components - Telegram bot alternative interface - Microservices architecture with shared components - Complete deployment support (Linux Docker + Windows IIS) - Comprehensive testing (Playwright E2E + pytest) Repository Structure: - reports-app/ - Main application (backend, frontend, telegram-bot) - shared/ - Shared components (database pool, auth, utils) - deployment/ - Deployment scripts (Linux & Windows) - docs/ - Project documentation - security/ - Security scanning and git hooks
26 lines
369 B
Plaintext
26 lines
369 B
Plaintext
# Telegram Bot
|
|
python-telegram-bot>=20.7
|
|
|
|
# HTTP Client
|
|
httpx>=0.25.0
|
|
|
|
# Data Validation
|
|
pydantic>=2.5.0
|
|
|
|
# Environment Variables
|
|
python-dotenv>=1.0.0
|
|
|
|
# SQLite Async Database (STANDALONE)
|
|
aiosqlite>=0.19.0
|
|
|
|
# Web Framework pentru Internal API
|
|
fastapi>=0.104.0
|
|
uvicorn>=0.24.0
|
|
|
|
# Monitoring (Optional)
|
|
sentry-sdk>=1.40.0
|
|
|
|
# Testing
|
|
pytest>=7.4.0
|
|
pytest-asyncio>=0.21.0
|