{"id":13554794,"url":"https://github.com/ncarlier/nunux-keeper","last_synced_at":"2025-04-03T07:32:52.538Z","repository":{"id":145991541,"uuid":"42002586","full_name":"ncarlier/nunux-keeper","owner":"ncarlier","description":"A open source content curation system.","archived":true,"fork":false,"pushed_at":"2018-10-01T19:42:47.000Z","size":6648,"stargazers_count":72,"open_issues_count":0,"forks_count":8,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-08-01T12:33:11.003Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://keeper.nunux.org","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ncarlier.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-06T12:56:40.000Z","updated_at":"2024-07-25T15:10:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"f7b408dd-684f-4eba-96e7-7970eb0c2922","html_url":"https://github.com/ncarlier/nunux-keeper","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncarlier%2Fnunux-keeper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncarlier%2Fnunux-keeper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncarlier%2Fnunux-keeper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncarlier%2Fnunux-keeper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ncarlier","download_url":"https://codeload.github.com/ncarlier/nunux-keeper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222935625,"owners_count":17060398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T12:02:55.004Z","updated_at":"2024-11-04T03:31:18.504Z","avatar_url":"https://github.com/ncarlier.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","others","📦 Legacy \u0026 Inactive Projects"],"sub_categories":[],"readme":"# NUNUX Keeper\n\n[![Build Status](https://travis-ci.org/ncarlier/nunux-keeper.svg)](https://travis-ci.org/ncarlier/nunux-keeper)\n\n\u003e Your personal content curation service.\n\nNunux Keeper allow you to collect, organize, and display articles or medias you\nfound on the Internet.\n\n---\n\n### :warning::warning::warning:This project has moved:warning::warning::warning:\n\n**Please refer to the [new version](https://github.com/nunux-keeper) of this project**\n\n---\n\n![Screenshot](screenshot.png)\n\n## Features\n\n* Connect with your Google account (OAuth2) or with Mozilla Persona\n* Save, classify and index documents.\n* A document can be an html page, notes, images and more!\n* Documents attached medias are also saved.\n* Search a document with powerful full text queries.\n* Access from your mobile or your computer. It's fully responsive.\n* Easily save web content while surfing thanks to the awesome bookmarklet.\n* Share a document on a public page.\n* Build your own client application thanks to the [RESTFul JSON API](http://keeper.nunux.org/doc).\n* Link your account with Twitter and keep your tweets.\n* Import your bookmarks from Pocket\n* Store medias on the local disk or on S3\n\n## Under the hood\n\nThe backend is using Node.js. All documents are stored in a MongoDB and are indexed with ElasticSearch using the MongoDB river. Redis is optional, but can be used to provide a message queuing system to download medias in background.\n\nThe frontend is using AngularJS and for the visual is using LESS with Twitter Bootstrap 3.\n\n## Installation (the -not so- hard way)\n\nThis installation procedure is from scratch. You can find below an easiest installation procedure thanks to Docker!\n\n### Prerequisites\n\n* [Git](http://git-scm.com/)\n* [Node.js](http://nodejs.org/) ~v0.10.0\n* [MongoDB](http://www.mongodb.org/) ~v2.4\n* [Elasticsearch](http://www.elasticsearch.org/) v0.90.10\n* [Redis](http://redis.io/) ~v2.8.0 (optional)\n* [Imagemagick](http://www.imagemagick.org/)\n\n#### Install Git, Node.JS, MongoDB and Redis (on Debian)\n\n```\nsudo aptitude install git nodejs mongodb-server redis-server imagemagick\n```\n\n#### Install Elasticsearch (and MongoDB river)\n\n```\nsudo aptitude install openjdk-7-jre wget\nES_HOME /opt/Elasticsearcharch\n(cd /tmp \u0026\u0026 wget https://download.elasticsearch.org/elasticsearch/elasticsearchsticsearch/elasticsearch-0.90.10.tar.gz -O pkg.tar.gz \u0026\u0026 tar zxf pkg.tar.gz \u0026\u0026 mv elasticsearch-* $ES_HOME)\n$ES_HOME/bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/1.9.0\n$ES_HOME/bin/plugin -install com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/1.7.3\n```\n\nConnect to mongodb and enabled replicaset:\n\n```\n$ mongo\n\u003e cfg = { \"_id\" : \"rs0\", \"version\" : 1, \"members\" : [ { \"_id\" : 0, \"host\" : \"localhost:27017\" } ] }\n\u003e rs.initiate(cfg)\n```\n\n#### Install Grunt\n\n```\nsudo npm install -g grunt-cli\n```\n\n### Install the Keeper\n\n```\nmkdir -p /opt/node/keeper \u0026\u0026 cd $_\ngit clone git@github.com:ncarlier/nunux-keeper.git\ncd keeper\nnpm install\n```\n\n### Run the Keeper\n\nSee [etc/default/dev.env](etc/default/dev.env) for configuration details.\n\n```\nnpm start\n```\n\nOpen your browser, go to http://localhost:3000 and enjoy!\n\n## Installation (the cool way)\n\n### Prerequisites\n\n* [Docker](http://www.docker.io/)\n\nOr a cool docker hosting service.\n\n### Start the Keeper\n\n```\n# Start Redis\ndocker run --name redis -d ncarlier/redis\n# MongoDB and ElasticSearch\ndocker run --name mongodb -d ncarlier/mongodb\n# Don't forget to initiate the new replica set: rs.initiate()\n# And ElasticSearch (linked with MongoDb replica)\ndocker run --name elasticsearch --link mongodb:mongodb -d ncarlier/elasticsearch\n\n# Get and run Keeper\ndocker run \\\n  --name=\"keeper-server\" \\\n  --link mongodb:db \\\n  --link elasticsearch:elasticsearch \\\n  --link redis:redis \\\n  --env-file=\"./etc/env.conf\" \\\n  -d \\\n  ncarlier/keeper\n\n# (Optional) Run Keeper downloader deamon\n# Only if you set APP_DOWNLOADER=\"async-redis\"\ndocker run \\\n  --name=\"keeper-resource-downloader\" \\\n  --link mongodb:db \\\n  --link elasticsearch:elasticsearch \\\n  --link redis:redis \\\n  --env-file=\"./etc/env.conf\" \\\n  -d \\\n  ncarlier/keeper resource-downloader\n\n# Enjoy!\n```\n\n## Configuration\n\nSee [etc/default/dev.env](etc/default/dev.env) for configuration details.\n\n----------------------------------------------------------------------\n\nNUNUX Keeper\n\nCopyright (c) 2014 Nicolas CARLIER (https://github.com/ncarlier)\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n\n----------------------------------------------------------------------\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fncarlier%2Fnunux-keeper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fncarlier%2Fnunux-keeper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fncarlier%2Fnunux-keeper/lists"}