A collaborative design platform that combines Cooler Master's design DNA with AWS generative AI capabilities to enhance product design workflows.
happysing_aws/
├── frontend/ # React + TypeScript frontend
│ ├── public/ # Static assets
│ │ ├── pages/ # Main application pages
│ │ ├── components/ # Reusable UI components
│ │ └── App.tsx # Main application entry
│ └── package.json # Frontend dependencies
│
├── backend/ # FastAPI backend
│ ├── app/
│ │ ├── main.py # FastAPI application entry
│ │ └── routes/ # API endpoints
│ └── requirements.txt # Python dependencies
│
└── README.md # Project documentation
- Product Type Selection
- AI-Powered Prompt Refinement
- Image Generation with AWS Bedrock
- Design Feedback and Iteration
- Knowledge Base Integration
- Design DNA Preservation
cd frontend
npm install
npm startcd backend
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reloadPOST /refine-prompt: Optimize design promptsPOST /generate-image: Generate design imagesPOST /submit-feedback: Submit design feedback
- Basic UI Implementation
- Mock API Integration
- AWS Services Integration
- Knowledge Base Development
- Design DNA Integration
- Production Deployment