Welcome to the Bazaar documentation! All project documentation is organized here.
- GETTING_STARTED.txt - Simple text guide for quick reference
- QUICKSTART.md - Get the app running in 3 steps
- INSTALLATION.md - Platform-specific installation instructions
- ELECTRONJS_IMPLEMENTATION_GUIDE.md - Complete Electron.js implementation guide (2300+ lines)
- ELECTRON_MIGRATION.md - Migration from Python to Electron summary
- PROJECT_STRUCTURE.md - Architecture and code organization
- FEATURES.md - Detailed feature documentation
- TIME_FILTER_FEATURE.md - Time period filter feature
- LOADING_STATES.md - Loading states and error handling
- UX_IMPROVEMENTS.md - UX enhancements
- BUILD_GUIDE.md - Complete build guide for all platforms
- BUILDING.md - Quick build reference
- BUILD_SUMMARY.md - Build process summary
- CHANGELOG.md - Version history and changes
- START_HERE.md - Overview and navigation guide
- ICON_SETUP_COMPLETE.md - Icon setup documentation
- README_ICONS.md - Icon configuration guide
- DOCS_REORGANIZED.md - Documentation structure
New to Bazaar?
- Start with GETTING_STARTED.txt or QUICKSTART.md
- Read FEATURES.md to understand capabilities
- Check INSTALLATION.md for platform-specific setup
Want to build from source?
- Read ELECTRONJS_IMPLEMENTATION_GUIDE.md
- Check PROJECT_STRUCTURE.md for architecture
- Follow BUILD_GUIDE.md for creating executables
Migrating from Python version?
- See ELECTRON_MIGRATION.md for what changed
Need help?
- Check the troubleshooting sections in QUICKSTART.md
- Read INSTALLATION.md for platform-specific issues
bazaar/
├── README.md # Main project readme
├── package.json # Project configuration
├── main.js # Electron main process
├── preload.js # Security bridge
│
├── docs/ # 📚 All documentation (you are here)
│ ├── README.md # This file
│ ├── GETTING_STARTED.txt # Quick start
│ ├── QUICKSTART.md # 3-step guide
│ └── ... # All other docs
│
├── src/
│ ├── renderer/ # UI layer
│ │ ├── index.html
│ │ ├── js/
│ │ └── styles/
│ └── services/ # Data layer
│ └── data-fetcher.js
│
├── scripts/ # Helper scripts
│ ├── setup.sh
│ ├── setup.bat
│ ├── run.sh
│ └── run.bat
│
└── assets/ # App icons
├── icon.png
├── icon.ico
└── icon.icns
Back to: Main README