NewsBlur is a personal news reader that brings people together to talk about the world. A new sound of an old instrument.
Find a file
Samuel Clay 05756155b1 Merge branch 'django3.0' into docker_django3.0
* django3.0: (184 commits)
  Removing log override
  Moving logging over to the newsblur log.
  Fixing search indexer background task for new celery.
  Attempting to add gunicorn errors to console/log.
  Better handling of missing subs.
  Handling missing user sub on feed delete.
  Correct encoding for strings on systems that don't have utf-8 as default encoding.
  Writing in the real urllib3 dependency for requests.
  Upgrading requests due to urllib3 incompatibility.
  Login required should use the next parameter.
  Upgrading django oauth toolkit for django 1.11.
  Handling newsletters with multiple recipients.
  Extracting image urls sometimes fails.
  Handling ajax errors in json views.
  Adding timeouts to most outbound requests.
  Sentry SDK 0.19.4.
  Removing imperfect proxy warning for every story.
  Found four more GET/POST crosses.
  Feed unread count may need a POST.
  Namespacing settings.
  ...
2020-12-08 13:04:39 -05:00
.vscode
api
apps Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
clients Merge branch 'master' into django1.11 2020-11-23 18:12:03 -05:00
config Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
docker work on the rest of the deployment steps for stack-compose.yml and remove hardcoded user value. Create functionality for machine build failure handling 2020-12-08 11:00:58 -05:00
documents
flask_monitor Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
logs
media Removing imperfect proxy warning for every story. 2020-12-06 10:31:20 -05:00
newsblur_web Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
node Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
r
templates Merge branch 'django1.11' into django2.0 2020-12-03 14:04:26 -05:00
utils Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
vendor Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
.dockerignore
.gitignore Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
.tm_properties
celery-settings.py use newsblur_web instead of newsblur as directory for settings file 2020-10-13 22:04:24 +07:00
docker-compose.yml Update README.md and remove commented lines from docker-compose.yml 2020-11-03 11:26:04 +07:00
fabfile.py Merge branch 'django3.0' into docker_django3.0 2020-12-08 13:04:39 -05:00
LICENSE.md
Maintenance.md update README and create a Maintenance.md file 2020-11-06 14:40:58 +07:00
Makefile change makefile to run tests individually 2020-11-19 11:49:16 -05:00
manage.py use newsblur_web instead of newsblur as directory for settings file 2020-10-13 22:04:24 +07:00
pytest.ini use pytest and add pytest.ini file 2020-11-06 14:47:41 +07:00
README.md Merge branch 'django1.11' into django2.0 2020-12-03 14:04:26 -05:00
requirements.txt
stack-compose.yml fix label names and add volumes 2020-12-08 11:01:41 -05:00
UPGRADING.md

NewsBlur

Get it on F-Droid Get it on Google Play

Features

  1. Shows the original site (you have to see it to believe it).
  2. Hides stories you don't want to read based on tags, keywords, authors, etc.
  3. Highlights stories you want to read, based on the same criteria.

Technologies

Server-side

  • Python 3.7+: The language of choice.
  • Django: Web framework written in Python, used to serve all pages.
  • Celery & RabbitMQ: Asynchronous queueing server, used to fetch and parse RSS feeds.
  • MongoDB, Pymongo, & Mongoengine: Non-relational database, used to store stories, read stories, feed/page fetch histories, and proxied sites.
  • PostgreSQL: Relational database, used to store feeds, subscriptions, and user accounts.
  • Redis: Programmer's database, used to assemble stories for the river, store story ids, manage feed fetching schedules, and the minuscule bit of caching that NewsBlur uses.
  • Elasticsearch: Search database, use for searching stories. Optional.

Client-side and design

  • jQuery: Cross-browser compliant JavaScript code. IE works without effort.
  • Underscore.js: Functional programming for JavaScript. Indispensable.
  • Backbone.js: Framework for the web app. Also indispensable.
  • Miscellaneous jQuery Plugins: Everything from resizable layouts, to progress bars, sortables, date handling, colors, corners, JSON, animations. See the complete list.

Prerequisites

* Docker
* Docker-Compose

Installation Instructions

  1. Run make nb to build Newsblur containers. This will set up all necessary databases, celery tasks, node applications, flask database monitor, NGINX, and a Haproxy load balancer.

  2. Navigate to:

     https://nb.local.com 
    

    Create an account. At the end of the account creation process, you will be redirected to https://localhost/profile/stripe_form. Hit the back button a few times, and you will be inside the app.

Contribution Instructions

  • Making Changes:

    • To apply changes to the Python or JavaScript code, use the make command.
    • To apply changes to the docker-compose.yml file, use the make rebuild command.
    • To apply changes to the docker/haproxy/haproxy.conf file, node packages, or any new database migrations you will need to use the make nb command.
  • Adding Python packages: Currently, the docker-compose.yml file uses the newsblur/newsblur_python3 image. It is built using the Dockerfile found in docker/newsblur_base_image.Dockerfile. Because of how the docker image is set up, you will need to create your own image and direct your docker-compose.yml file to use it. Please follow the following steps to do so.

    1. Add your new site-packages to config/requirements.txt.
    2. Add the following lines of code to your docker-compose.yml file to replace anywhere where it says image: newsblur/newsblur_python3
    build: context: . dockerfile: docker/newsblur_base_image.Dockerfile
    1. Run the make nb command to rebuild your docker-compose containers
  • Debugging Python

    • To debug your code, drop import pdb; pdb.set_trace() into the Python code where you would like to start debugging and run make and then make debug.
  • Using Django shell within Docker

    • Make sure your docker containers are up and run make shell to open the Django shell within the newsblur_web container.

Running unit and integration tests

NewsBlur comes complete with a test suite that tests the functionality of the rss_feeds, reader, and feed importer. To run the test suite:

`make test`

Author

License

NewsBlur is licensed under the MIT License. (See LICENSE)