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
64 lines
689 B
Plaintext
64 lines
689 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Production builds
|
|
dist/
|
|
build/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# Test output
|
|
/test-results/
|
|
/playwright-report/
|
|
/playwright-report-integration/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
|
|
# Test artifacts and debugging files
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
*.webm
|
|
*.mp4
|
|
*.har
|
|
trace*.zip
|
|
*-debug.json
|
|
*-report.json
|
|
*-report.xml
|
|
debug-*.png
|
|
journey-*.png
|
|
button-debug.png
|
|
responsive-*.png
|
|
|
|
# Coverage
|
|
coverage/
|
|
*.lcov
|
|
.nyc_output/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log |