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.gitOnce 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.pyOr if you are using Windows:
$ set FLASK_APP=nuncio.pyAnd then install all the necessary requirements using:
$ pip install -r requirements.txtPrepare the database by doing:
$ flask db init
$ flask db migrate -m "users table"
$ flask db upgradeThis will initialise all of the tables in the models.py file.
Then run the server....
$ python nuncio.pyThe website should be running in your local network, so probably localhost:5000.