Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 622 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 622 Bytes

FastAPI server with ChatGPT + ReactJS Frontend

Article about the project can be found here.

Installation

Install Python dependencies:
pip install -r requirements.txt
Install JavaScript dependencies:

First:

cd client

Then:

npm install

Run

Run the server:
uvicorn main:app --reload --port 8000
Run the client:

First:

cd client

Then:

npm start