This is the frontend service for the Fake Detector application, built with Streamlit.
The app itself can be found here.
The backend repo can be found here.
-
Clone the repository:
git clone <repository-url>
cd fake-news-frontend
-
Set up a virtual environment:
pyenv virtualenv 3.10.6 <environment-name>
pyenv local <environment-name>
-
Install dependencies:
pip install -r requirements.txt
-
Set up Streamlit secrets: Create a
.streamlit/secrets.toml
file and add necessary secrets. -
Run the Streamlit app: streamlit run fake-detector.py
The app should now be running on http://localhost:8501
.
- Update the
backend_url
infake-detector.py
to point to your deployed backend service.