The fair news aggregator, allowing for all kinds of news from any real news sources.
https://nuncio-production.herokuapp.com
Get the source code using the following:
$ git clone https://www.github.com/ModoUnreal/nuncio.git
Once inside the nuncio directory you should probably set up a virtual environment:
$ virtualenv <env_name>
$ <env_name>\Scripts\activate
(Replace env_name
with whatever you want to call it)
Then set up the flask app as such:
$ export FLASK_APP=nuncio.py
Or if you are using Windows:
$ set FLASK_APP=nuncio.py
And then install all the necessary requirements using:
$ pip install -r requirements.txt
Prepare the database by doing:
$ flask db init
$ flask db migrate -m "users table"
$ flask db upgrade
This will initialise all of the tables in the models.py file.
Then run the server....
$ python nuncio.py
The website should be running in your local network, so probably localhost:5000
.