Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

📚 Bazaar Documentation

Welcome to the Bazaar documentation! All project documentation is organized here.

📖 Documentation Index

Getting Started

Implementation

Features & Usage

Building & Distribution

Additional Resources

🚀 Quick Navigation

New to Bazaar?

  1. Start with GETTING_STARTED.txt or QUICKSTART.md
  2. Read FEATURES.md to understand capabilities
  3. Check INSTALLATION.md for platform-specific setup

Want to build from source?

  1. Read ELECTRONJS_IMPLEMENTATION_GUIDE.md
  2. Check PROJECT_STRUCTURE.md for architecture
  3. Follow BUILD_GUIDE.md for creating executables

Migrating from Python version?

Need help?

📂 Project Organization

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

🔗 External Resources


Back to: Main README