Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 1.81 KB

File metadata and controls

66 lines (50 loc) · 1.81 KB

Examples

This folder contains instruction of how to run this app:

Running the App Locally

1. Clone the Git Repo

Run the following git command:

git clone https://github.com/DSProjects2024/thronetalk-game-of-thrones-summarizer

2. Local Environment Setup

To create the 'thronetalks' conda environment which contains all the required packages to run the app, run these commands:

conda env create -f environment.yml
conda activate thronetalks

The second commande activates the specific environemnt.

If you want to deactivate this environment in the future, then use the command:

conda deactivate

If you want to delete this environment, then use the following command:

conda remove --name thronetalks --all

4. Run the App

The app can be run on the localhost using the following command.

streamlit run an_analysis_of_nothing/app.py

Make sure to activae conda before doing this using

conda activate thronetalks

if not done already.

Enjoy the experience of using Game of Thrones Summarizer right on your browser!!

Deployment

The app is hosted as a Streamlit app here: throne-talk.streamlit.app

Web Application