2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00
2026-01-27 18:07:00 -06:00

PromptTech Solutions E-Commerce Platform

A full-stack e-commerce platform with admin dashboard, user management, inventory control, and service booking capabilities.

🚀 Quick Start

# Start both backend and frontend with PM2
./scripts/start_with_pm2.sh

# Check service status
./scripts/check_status.sh

# Stop all services
./scripts/stop_pm2.sh

Access the application:

Admin Login:

📁 Project Structure

PromptTech_Solution_Site/
├── backend/          # FastAPI backend server
├── frontend/         # React frontend application
├── docs/            # Documentation
│   ├── features/    # Feature documentation
│   ├── guides/      # User guides
│   └── reports/     # Technical reports
├── scripts/         # Utility scripts
├── tests/           # Test files
├── test_reports/    # Test execution reports
├── logs/            # Application logs
├── Logo/            # Brand assets
└── archive/         # Archived files

For detailed structure, see WORKSPACE_STRUCTURE.md

🛠️ Technology Stack

Backend:

  • Python 3.x
  • FastAPI 2.0
  • SQLAlchemy (Async ORM)
  • PostgreSQL
  • Bcrypt & JWT Authentication

Frontend:

  • React 19
  • TipTap 3.15 (Rich Text Editor)
  • Tailwind CSS
  • shadcn/ui Components
  • Axios

Features

Customer Features

  • Product catalog with multi-image support
  • Service booking system
  • Shopping cart and checkout
  • Order history and tracking
  • User authentication and profiles
  • Product reviews and ratings

Admin Dashboard

  • User Management: Create and manage users with 5 role levels (Admin, User, Employee, Accountant, Sales Manager)
  • Inventory Management: Full CRUD with active/inactive toggle, filters, and pagination
  • Product Management: Multi-image upload, rich text descriptions, stock tracking
  • Service Management: Service catalog, bookings, and scheduling
  • Order Management: Order processing, status updates, tracking
  • Category Management: Product and service categorization
  • Reports: Sales reports, inventory reports (CSV/PDF export)

📚 Documentation

Guides

Feature Documentation

Technical Reports

🗄️ Database

PostgreSQL Database:

  • Database: techzone
  • User: techzone_user
  • Port: 5432
  • Tables: 15+ tables (users, products, services, orders, etc.)

🔧 Development

Backend Setup

cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python server.py

Frontend Setup

cd frontend
npm install
npm start

Create Admin User

cd backend
source venv/bin/activate
python create_admin.py

🧪 Testing

# Run backend tests
python tests/backend_test.py

# Run admin feature tests
./scripts/verify_admin_features.sh

# Test database integration
./scripts/test_database_integration.sh

📦 Deployment

The application uses PM2 for process management:

# Start services
pm2 start scripts/ecosystem.config.json

# Monitor services
pm2 monit

# View logs
pm2 logs

# Restart services
pm2 restart all

🔐 Environment Variables

Backend (.env):

DATABASE_URL=postgresql+asyncpg://techzone_user:techzone_pass@localhost:5432/techzone
SECRET_KEY=your-secret-key-here
CORS_ORIGINS=http://localhost:5300

Frontend (.env):

REACT_APP_BACKEND_URL=http://localhost:8181

🤝 Contributing

  1. Keep code organized in respective folders
  2. Update documentation for new features
  3. Write tests for new functionality
  4. Follow existing code style and conventions

📝 Recent Updates (January 12, 2026)

  • Complete rebranding to PromptTech Solutions
  • User management system with RBAC (5 roles)
  • Inventory filters and pagination
  • Multi-image upload with rich text editor
  • Performance optimizations
  • Workspace organization and documentation

📞 Support

For questions or issues:

  1. Check the Quick Start Guide
  2. Review Technical Reports
  3. Check Feature Documentation

Company: PromptTech Solutions
Version: 2.0.0
Last Updated: January 12, 2026

Description
No description provided
Readme 3.4 MiB
Languages
JavaScript 67.7%
Python 23.4%
Shell 6.2%
HTML 1.4%
CSS 1.3%