bookmarks/README.md

101 lines
4.0 KiB
Markdown
Raw Normal View History

2018-03-11 18:02:58 +00:00
# Nextcloud Bookmarks
2013-04-12 18:30:19 +00:00
2017-04-06 13:13:24 +00:00
![](https://github.com/nextcloud/bookmarks/raw/master/screenshots/Bookmarks.png)
2018-03-11 18:02:58 +00:00
> Bookmarks app for Nextcloud
2019-09-14 15:09:38 +00:00
This app provides you with a web interface for collecting and organizing bookmarks to the sites on the web that are precious to you. You can browse and filter your bookmarks via tags and folders and by using the built-in search feature. Furthermore, in order to access your bookmarks anywhere, it also allows you to synchronize third-party clients via a built-in REST API -- in your browsers and on your phone.
2018-03-11 18:02:58 +00:00
## Install
2019-09-04 10:50:47 +00:00
2019-09-14 15:09:38 +00:00
### Requirements
- php v7.1+
PHP extensions:
2019-07-21 13:49:22 +00:00
- gmp: \*
- intl: \*
- mbstring: \*
2018-03-11 18:02:58 +00:00
### One-click
2018-12-14 14:19:24 +00:00
Install this app in the app store of your nextcloud instance (you must have administrator privileges). You will find it in the 'Organization' category.
2018-03-11 18:02:58 +00:00
### Manual install
2018-12-14 14:19:24 +00:00
2018-03-11 18:02:58 +00:00
#### Dependencies
2018-12-14 14:19:24 +00:00
- [git](https://git-scm.org/)
- [Node.js and npm](https://nodejs.org/)
- [php](https://php.net/)
- [composer](https://getcompoert.org/)
2018-03-11 18:02:58 +00:00
#### Setup
2018-12-14 14:19:24 +00:00
```
2018-03-11 18:02:58 +00:00
cd /path/to/nextcloud/apps/
git clone https://github.com/nextcloud/bookmarks.git
2018-03-11 18:01:12 +00:00
cd bookmarks
composer install
npm install
npm run build
```
2018-03-11 18:02:58 +00:00
## Third-party clients
2018-12-14 14:19:24 +00:00
2019-09-14 15:09:38 +00:00
### Android
2019-05-25 12:41:34 +00:00
- [Nextcloud Bookmarks](https://gitlab.com/bisada/OCBookmarks) - client app for Android ([new PlayStore entry](https://play.google.com/store/apps/details?id=org.bisw.nxbookmarks))
2019-03-30 12:00:42 +00:00
- [NCBookmarks](https://github.com/lenchan139/NCBookmark) - Android App
2019-09-14 15:09:38 +00:00
### Browser
- [Owncloud Bookmarks](https://chrome.google.com/webstore/detail/owncloud-bookmarks/eomolhpeokmbnincelpkagpapjpeeckc?hl=de) - Bookmarks extension for Chromium-based browsers (Chromium/Chrome/Opera/Vivaldi)
- [Floccus](https://github.com/marcelklehr/floccus) - Bookmark sync for Firefox/Chromium-based browsers
- [FreedomMarks](https://github.com/damko/freedommarks-browser-webextension) - Addon for Firefox and Chrome. No sync, just a client.
2019-09-14 15:09:38 +00:00
### Desktop
2019-03-30 12:00:42 +00:00
- [Nextcloud Bookmark Manager](https://www.midwinter-dg.com/mac-apps/nextcloud-bookmark-manager.html) A MacOS client
- [QOwnNotes](https://www.qownnotes.org/) - Plain-text file markdown note taking desktop application (no sync, just importing bookmarks)
2019-09-14 15:09:38 +00:00
### Other
- [uMarks](https://uappexplorer.com/app/umarks.ernesst) - App for Ubuntu touch
2018-03-11 18:02:58 +00:00
## API
2018-12-14 14:19:24 +00:00
2018-03-11 18:02:58 +00:00
This app exposes a public REST API that third-party clients can interface with.
2018-03-11 18:02:58 +00:00
[Go to the API docs](./API.md).
2018-03-11 18:02:58 +00:00
## Maintainers
2018-12-14 14:19:24 +00:00
2018-03-11 18:02:58 +00:00
- [Blizzz](https://github.com/Blizzz)
- [Marcel Klehr](https://github.com/marcelklehr)
2017-02-10 21:16:08 +00:00
2019-09-04 10:50:47 +00:00
## Donate
If you'd like to support the creation and maintenance of this software, consider donating.
| [<img src="https://img.shields.io/badge/paypal-donate-blue.svg?logo=paypal&style=for-the-badge">](https://www.paypal.me/marcelklehr1) | [<img src="http://img.shields.io/liberapay/receives/marcelklehr.svg?logo=liberapay&style=for-the-badge">](https://liberapay.com/marcelklehr/donate) |
| :-----------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------: |
2018-03-11 18:02:58 +00:00
## Contribute
2018-12-14 14:19:24 +00:00
2018-03-11 18:02:58 +00:00
We always welcome contributions and happily accept pull requests.
2017-02-10 21:16:08 +00:00
2018-03-11 18:02:58 +00:00
In order to make the process run more smoothly, you can make sure of the following things:
2017-02-10 21:16:08 +00:00
2018-12-14 14:19:24 +00:00
- Announce that you're working on a feature/bugfix in the relevant issue
- Make sure the tests are passing
- If you have any questions you can let the maintainers above know privately via email, or simply open an issue on github
2017-02-10 21:16:08 +00:00
2018-03-11 18:02:58 +00:00
Please read the [Code of Conduct](https://nextcloud.com/community/code-of-conduct/). This document offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other.
2017-02-10 21:16:08 +00:00
2018-03-11 18:02:58 +00:00
More information on how to contribute: https://nextcloud.com/contribute/
2017-02-10 21:16:08 +00:00
2018-03-11 18:02:58 +00:00
Happy hacking :heart:
2018-03-11 18:02:58 +00:00
## License
2018-12-14 14:19:24 +00:00
2018-03-11 18:02:58 +00:00
This software is licensed under the terms of the AGPL written by the Free Software Foundation and available at [COPYING](./COPYING).