Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 762 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 762 Bytes

Front End

In one terminal...

Set up

Make sure npm, react, and mui are installed

To run FE

cd frontend
npm start

BackEnd

In another terminal...

Set up

cd backend
conda env create -n UIDesignProto -f environment.yml

pip install as necessary
create a .env file within the backend directory
and add your Open AI API key and Anthropic API Key. They should be saved as follows: "ANTHROPIC_API_KEY"="xyz", and "OPENAI_API_KEY"="xyz"
create a generated folder within backend directory - this is where all the generated code will stay

To run BE

conda activate UIDesignProto
python server.py