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
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
Show help for the session management system:
|
|
|
|
## Session Management Commands
|
|
|
|
The session system helps document development work for future reference.
|
|
|
|
### Available Commands:
|
|
|
|
- `/project:session-start [name]` - Start a new session with optional name
|
|
- `/project:session-update [notes]` - Add notes to current session
|
|
- `/project:session-end` - End session with comprehensive summary
|
|
- `/project:session-list` - List all session files
|
|
- `/project:session-current` - Show current session status
|
|
- `/project:session-help` - Show this help
|
|
|
|
### How It Works:
|
|
|
|
1. Sessions are markdown files in `.claude/sessions/`
|
|
2. Files use `YYYY-MM-DD-HHMM-name.md` format
|
|
3. Only one session can be active at a time
|
|
4. Sessions track progress, issues, solutions, and learnings
|
|
|
|
### Best Practices:
|
|
|
|
- Start a session when beginning significant work
|
|
- Update regularly with important changes or findings
|
|
- End with thorough summary for future reference
|
|
- Review past sessions before starting similar work
|
|
|
|
### Example Workflow:
|
|
|
|
```
|
|
/project:session-start refactor-auth
|
|
/project:session-update Added Google OAuth restriction
|
|
/project:session-update Fixed Next.js 15 params Promise issue
|
|
/project:session-end
|
|
``` |