Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 792 Bytes

README.md

File metadata and controls

47 lines (29 loc) · 792 Bytes

Interior Designer - AI

Create interior design renders with the Stable Diffusion API

InteriorDesigner-AI.com

IDAI.png

Develop

This project uses Stable Diffusion to generate renders and Cloudflare R2 storage. The project makes use of cython dependencies that are not compatible with Python 3.12+ for now.

Setup API Keys

#Setup .env in server/app/routes/
STABILITYAI_API_KEY=your_key
CLOUDFLARE_R2_TOKEN=your_token
R2_ACCESS_KEY_ID=your_id
R2_SECRET_ACCESS_KEY=your_key
CLOUDFLARE_ACCOUNT_ID=your_id

Run

#from client/
npm install
npm run dev

#from server/ 
pip install -r requirements.txt
python server.py

Build with Docker

docker compose build
docker compose up -d