📰
BitNews
This is a one of a kind web application for a modern news ecosystem to tackle fake news hassle free, written in flask-python. It further uses gunicorn as the WSGI interface to make it production ready.
Getting Started
To run the application
git clone https://www.github.com/unicorn-io/BitNews
As you are into the repository locally you can setup an virtual environment (optional)
python -m venv env
source /env/Scripts/activate
Now make sure you have installed all the requirements freezed in requirements.txt
pip install -r requirements.txt
To deploy the application on the local host
python run.py
To use an production ready WSGI Interface such as gunicorn
gunicorn --bind 0.0.0.0:8080 wsgi:app