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
2021-03-08 14:14:15 -05:00
.vscode Stubbing in dashboard rivers. Also restyling static pages. 2020-12-10 12:32:20 -05:00
ansible Adding deploy work, updating zshrc to include correct container name for shell_plus command. 2021-03-08 11:33:58 -05:00
api Fixing search indexing. Also removing superfluous search_indexer_tasker queue. 2021-03-03 17:04:05 -05:00
apps Handling unregistered ios token. 2021-03-08 11:34:52 -05:00
archive move haproxy swarm files to archive 2021-02-25 10:15:26 -05:00
clients V10.2.1b3. 2021-02-23 14:40:43 -05:00
config Updating to apns2 library for Apple Push Notifications over Http/2. 2021-03-04 18:26:40 -05:00
docker delete dockerfile for redis. it is a relic of swarm 2021-03-04 13:29:38 -05:00
documents
flask_monitor update requirements for monitor image so that settings.py can be used 2021-03-04 12:26:50 -05:00
logs
media Only show active feeds in dashboard river. Also link dashboard river title and icon. 2021-03-04 10:24:17 -05:00
newsblur_web add db_ to db container names 2021-03-08 14:14:15 -05:00
node Fixing broken node vars. 2021-02-26 11:09:50 -05:00
perf add performance test make commands, dockerfile for locust, and rough draft of performance test (locust.py) 2021-02-24 10:21:47 -05:00
r
templates Whitney everywhere. This is a big change. I think everything needs a 1px bump up in size. 2021-02-26 17:25:22 -05:00
terraform Finishing up db-mongo-analytics. Redis also now works. 2021-02-24 11:57:26 -05:00
utils Fixing search indexing. Also removing superfluous search_indexer_tasker queue. 2021-03-03 17:04:05 -05:00
vendor Removing unvendorized APNs dependency. 2021-03-04 19:13:13 -05:00
.dockerignore add .dockerignore 2021-01-19 09:40:51 -05:00
.gitignore Ignoring terraform on master. 2021-02-08 12:30:23 -05:00
.tm_properties
.venv Auto-enabling newsblur3 virtualenv. 2020-12-08 12:59:46 -05:00
ansible.cfg Getting the old non-docker servers working in concert with the new ones. Now to give them all the shared firewall and install consul. 2021-02-23 15:53:46 -05:00
ansible.old.cfg Getting the old non-docker servers working in concert with the new ones. Now to give them all the shared firewall and install consul. 2021-02-23 15:53:46 -05:00
docker-compose.yml add db_ to db container names 2021-03-08 14:14:15 -05:00
fabfile.py Merge branch 'master' into dashboard3 2021-02-08 12:32:21 -05:00
LICENSE.md
Maintenance.md update README and create a Maintenance.md file 2020-11-06 14:40:58 +07:00
Makefile Adding deploy work, updating zshrc to include correct container name for shell_plus command. 2021-03-08 11:33:58 -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 add performance test make commands, dockerfile for locust, and rough draft of performance test (locust.py) 2021-02-24 10:21:47 -05:00
requirements.txt
UPGRADING.md Vendorizing new feedparser. 2020-07-01 18:38:37 -04:00

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. Add 127.0.0.1 nb.local.com to your local /etc/hosts file

  3. 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.

Making docker-compose work with your database

To make docker-compose work with your database, upgrade your local database to the docker-compose version and then volumize the database data path by changing the ./docker/volumes/ part of the volume directive in the service to point to your local database's data directory.

To make docker-compose work with an older database version, change the image version for the database service in the docker-compose file.

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`

Running a performance test

Performance tests use the locust performance testing tool. To run performance tests via CLI, use make perf-cli users=1 rate=1 host=https://nb.local.com. Feel free to change the users, rate, and host variables in the command to meet you needs.

You can also run locust performance tests using a UI by running make perf-ui and then navigating to http://127.0.0.1:8089. This allows you to chart and export your performance data.

To run locust using docker, just run make perf-docker and navigate to http://127.0.0.1:8089

Author

License

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