Skip to content

Build and Deploy Steps

Nahrain1 edited this page Feb 4, 2024 · 5 revisions

Obtain an API Key from "https://platform.openai.com/api-keys", then follow these steps to set up and run the software:

2. Install the required dependencies:

pip install -r requirements.txt

3. To run the software without Docker:

  • Navigate to the 'ChatUI_streamlit' directory:
cd.\src\ChatUI_streamlit\
  • Run the Streamlit app:
streamlit run app.py

4. To run it with Docker:

  • Build the Docker image:
docker build -t my-streamlit-app .
  • Run the Docker container:
docker run -p 8501:8501my-streamlit-app