- Copy necessary files into a new folder
data/
- Create a virtual environment and activate it
- install packages with
pip install -r pipreqs.txt
- run webapp with
python app.py
and open the IP address specified in the terminal
app.py
: The main Flask application file and entry point to starting the web app.utils.py
: Contains utility functions and classes for retrieving articles and recommendations.templates/
: HTML templates using jinja2 templating for rendering web pages.static/
: Static file like CSS for styling the web pages.