App with React Material UI client with Okta integration. Python/JS experimental scripts
- Added chat history with local postgresdb
- Node JS
- Python
- OpenAI key
- postgresdb
-
Clone the repository
-
Update .env file for client with following okta creds:
REACT_APP_CLIENT_ID=
REACT_APP_ISSUER="https://<domain>/oauth2/default"
REACT_APP_OKTA_TESTING_DISABLEHTTPSCHECK="false"
- Install client dependencies
cd client
npm install
- Start the client
cd client
npm start
- Local potsgresdb
Install postgresdb locally. to store chat history
- Start the server
cd python-server
python server.py
-
Check if your client application run on port 3000 with the development environment configuration, so in your browser just go to http://localhost:3000
-
Check if your server application run on port 4000