NewsBlur/README.md

111 lines
4.9 KiB
Markdown
Raw Normal View History

2011-07-17 10:59:59 -07:00
# NewsBlur
2013-04-12 10:11:21 -07:00
* NewsBlur is a personal news reader bringing people together
to talk about the world. A new sound of an old instrument.
* [www.newsblur.com](http://www.newsblur.com).
2011-07-17 10:59:59 -07:00
* Created by [Samuel Clay](http://www.samuelclay.com).
* Twitter: [@samuelclay](http://twitter.com/samuelclay) and
[@newsblur](http://twitter.com/newsblur).
2017-03-12 13:13:04 +01:00
<a href="https://f-droid.org/repository/browse/?fdid=com.newsblur" target="_blank">
<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80"/></a>
<a href="https://play.google.com/store/apps/details?id=com.newsblur" target="_blank">
<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png" alt="Get it on Google Play" height="80"/></a>
2011-07-17 10:59:59 -07:00
## Features
2013-04-30 01:14:38 -03:00
1. Shows the original site (you have to see it to believe it).
2011-07-17 11:00:36 -07:00
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.
2011-07-17 10:59:59 -07:00
## Technologies
### Server-side
* [Python 3.7+](http://www.python.org): The language of choice.
* [Django](http://www.djangoproject.com): Web framework written in Python, used
to serve all pages.
* [Celery](http://ask.github.com/celery) & [RabbitMQ](http://www.rabbitmq.com):
Asynchronous queueing server, used to fetch and parse RSS feeds.
2015-08-21 14:38:09 -04:00
* [MongoDB](http://www.mongodb.com), [Pymongo](https://pypi.python.org/pypi/pymongo), &
[Mongoengine](http://www.github.com/hmarr/mongoengine): Non-relational database,
used to store stories, read stories, feed/page fetch histories, and proxied sites.
* [PostgreSQL](http://www.postgresql.com): Relational database, used to store feeds,
subscriptions, and user accounts.
* [Redis](http://redis.io): 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](http://elasticsearch.org): Search database, use for searching stories. Optional.
2011-07-17 10:59:59 -07:00
### Client-side and design
* [jQuery](http://www.jquery.com): Cross-browser compliant JavaScript code. IE works without effort.
2015-08-21 14:38:09 -04:00
* [Underscore.js](http://underscorejs.org/): Functional programming for JavaScript.
2019-08-15 14:22:10 +12:00
Indispensable.
* [Backbone.js](http://backbonejs.org/): Framework for the web app. Also indispensable.
2011-07-17 10:59:59 -07:00
* Miscellaneous jQuery Plugins: Everything from resizable layouts, to progress
bars, sortables, date handling, colors, corners, JSON, animations.
[See the complete list](https://github.com/samuelclay/NewsBlur/tree/master/media/js).
2010-02-14 22:53:51 -05:00
2011-07-17 15:30:25 -07:00
### 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`
<code>
build:
context: .
dockerfile: docker/newsblur_base_image.Dockerfile
</code>
3. 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`
2011-07-17 21:03:31 -07:00
## Author
* Created by [Samuel Clay](http://www.samuelclay.com).
* Email address: <samuel@newsblur.com>
2011-07-17 21:03:31 -07:00
* [@samuelclay](http://twitter.com/samuelclay) on Twitter.
2011-07-17 21:03:31 -07:00
## License
2013-04-30 01:12:35 -03:00
NewsBlur is licensed under the MIT License. (See LICENSE)