NewsBlur

所属分类:Redis
开发工具:Objective-C
文件大小:320392KB
下载次数:0
上传日期:2023-05-10 11:26:28
上 传 者sh-1993
说明:  NewsBlur是一款个人新闻阅读器,它将人们聚集在一起谈论世界。一个旧乐器的新声音...
(NewsBlur is a personal news reader that brings people together to talk about the world. A new sound of an old instrument.)

文件列表:
.dockerignore (18, 2023-06-13)
.venv (10, 2023-06-13)
.vscode (0, 2023-06-13)
.vscode\settings.json (1430, 2023-06-13)
LICENSE.md (1121, 2023-06-13)
Maintenance.md (8005, 2023-06-13)
Makefile (8894, 2023-06-13)
UPGRADING.md (784, 2023-06-13)
ansible.cfg (427, 2023-06-13)
ansible.old.cfg (620, 2023-06-13)
ansible (0, 2023-06-13)
ansible\all.yml (510, 2023-06-13)
ansible\deploy.yml (672, 2023-06-13)
ansible\env_vars (0, 2023-06-13)
ansible\env_vars\base.yml (1770, 2023-06-13)
ansible\group_vars (0, 2023-06-13)
ansible\group_vars\NewsBlur.yml (98, 2023-06-13)
ansible\group_vars\NewsBlur_Docker.yml (93, 2023-06-13)
ansible\group_vars\all (169, 2023-06-13)
ansible\group_vars\staging.yml (44, 2023-06-13)
ansible\inventories (0, 2023-06-13)
ansible\inventories\all.yml (113, 2023-06-13)
ansible\inventories\digital_ocean.old.yml (596, 2023-06-13)
ansible\inventories\digital_ocean.yml (1733, 2023-06-13)
ansible\playbooks (0, 2023-06-13)
ansible\playbooks\deploy_app.yml (4240, 2023-06-13)
ansible\playbooks\deploy_monitor.yml (655, 2023-06-13)
ansible\playbooks\deploy_node.yml (1073, 2023-06-13)
ansible\playbooks\deploy_redis.yml (491, 2023-06-13)
ansible\playbooks\deploy_staging.yml (677, 2023-06-13)
ansible\playbooks\deploy_task.yml (1880, 2023-06-13)
ansible\playbooks\deploy_www.yml (1475, 2023-06-13)
ansible\playbooks\env_vars (11, 2023-06-13)
ansible\playbooks\group_vars (13, 2023-06-13)
ansible\playbooks\roles (8, 2023-06-13)
ansible\playbooks\setup_app.yml (596, 2023-06-13)
... ...

# NewsBlur * 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). * Created by [Samuel Clay](http://www.samuelclay.com). * Twitter: [@samuelclay](http://twitter.com/samuelclay) and [@newsblur](http://twitter.com/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+](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. * [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. ### Client-side and design * [jQuery](http://www.jquery.com): Cross-browser compliant JavaScript code. IE works without effort. * [Underscore.js](http://underscorejs.org/): Functional programming for JavaScript. Indispensable. * [Backbone.js](http://backbonejs.org/): 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](https://github.com/samuelclay/NewsBlur/tree/master/media/js). ### Prerequisites * Docker * Docker-compose ## Installation Instructions 1. Clone this repo 2. Run `make nb` to build all of the NewsBlur containers. This will set up all necessary databases, front-end django apps, celery tasks, node apps, flask database monitor and metrics, nginx, and a haproxy load balancer. 7. Navigate to: https://localhost Note: You will be warned that you are using a self signed certificate. In order to get around this warning you must type "thisisunsafe" as per [this blog post](https://dblazeski.medium.com/chrome-bypass-net-err-cert-invalid-for-development-daefae43eb12). ## Using a custom domain 1. Run the custom domain script ``` bash ./utils/custom_domain.sh ``` This script will do the following: * Change `NEWSBLUR_URL` and `SESSION_COOKIE_DOMAIN` in `newsblur_web/docker_local_settings.py` * Change the domain in `config/fixtures/bootstrap.json` You can also change domains: `bash ./utils/custom_domain.sh ` 2. If you're using a custom subdomain, you'll also want to add it to `ALLOWED_SUBDOMAINS` in `apps/reader/views.py` 3. A way to make sure you updated all the correct places: * Go to the website address in your browser * Open developer tools and look at the network tab * Try to login * Look again at the developer tools, there should be a POST call to /login * Observe the Response headers for that call * The value of the "set-cookie" header should contain a "Domain=" string If the string after `Domain=` is not the domain you are using to access the website, then your configuration still needs your custom domain. You can also confirm that there is a domain name mismatch in the database by running `make shell` & typing `Site.objects.all()[0]` to show the domain that NewsBlur is expecting. ## Making docker-compose work with your existing 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 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` ### 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://localhost`. 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 * Created by [Samuel Clay](http://www.samuelclay.com). * Email address: * [@samuelclay](http://twitter.com/samuelclay) on Twitter. ## License NewsBlur is licensed under the MIT License. (See LICENSE)

近期下载者

相关文件


收藏者