linkding/README.md

170 lines
8.8 KiB
Markdown
Raw Normal View History

2022-05-14 17:23:52 +00:00
<div align="center">
<br>
<a href="https://github.com/sissbruecker/linkding">
<img src="docs/header.svg" height="50">
</a>
<br>
</div>
## Overview
- [Introduction](#introduction)
- [Installation](#installation)
- [Using Docker](#using-docker)
- [Using Docker Compose](#using-docker-compose)
- [User Setup](#user-setup)
- [Managed Hosting Options](#managed-hosting-options)
- [Browser Extension](#browser-extension)
- [Community](#community)
- [Development](#development)
- Additional Documentation
- [Options](docs/Options.md)
- [Backups](docs/backup.md)
- [Troubleshooting](docs/troubleshooting.md)
- [How To](docs/how-to.md)
- [Admin documentation](docs/Admin.md)
- [REST API](docs/API.md)
## Introduction
linkding is a simple bookmark service that you can host yourself.
It's designed be to be minimal, fast, and easy to set up using Docker.
2019-12-24 09:50:40 +00:00
The name comes from:
- *link* which is often used as a synonym for URLs and bookmarks in common language
2022-05-14 17:23:52 +00:00
- *Ding* which is German for thing
- ...so basically something for managing your links
2019-12-24 09:50:40 +00:00
**Feature Overview:**
- Tags for organizing bookmarks
- Search by text or tags
2021-03-28 22:43:50 +00:00
- Bulk editing
- Bookmark archive
2021-03-28 10:11:56 +00:00
- Dark mode
- Automatically creates snapshots of bookmarked websites on [the Internet Archive Wayback Machine](https://archive.org/web/)
2022-05-14 17:23:52 +00:00
- Automatically provides titles and descriptions of bookmarked websites
- Import and export bookmarks in Netscape HTML format
- Extensions for [Firefox](https://addons.mozilla.org/de/firefox/addon/linkding-extension/) and [Chrome](https://chrome.google.com/webstore/detail/linkding-extension/beakmhbijpdhipnjhnclmhgjlddhidpe), and a bookmarklet that should work in most browsers
- REST API for developing 3rd party apps
2021-03-28 22:43:50 +00:00
- Admin panel for user self-service and raw data access
- Easy to set up using Docker, uses SQLite as database
2019-12-24 14:59:46 +00:00
**Demo:** https://demo.linkding.link/ (configured with open registration)
2019-12-24 14:58:56 +00:00
**Screenshot:**
2019-12-24 09:50:40 +00:00
![Screenshot](/docs/linkding-screenshot.png?raw=true "Screenshot")
## Installation
2022-05-14 17:23:52 +00:00
linkding is designed to be run with container solutions like [Docker](https://docs.docker.com/get-started/). The Docker image is compatible with ARM platforms, so it can be run on a Raspberry Pi.
2019-12-26 17:49:10 +00:00
2022-05-14 17:23:52 +00:00
### Using Docker
2019-12-24 09:50:40 +00:00
2022-05-14 17:23:52 +00:00
To install linkding using Docker you can just run the [latest image](https://hub.docker.com/repository/docker/sissbruecker/linkding) from Docker Hub:
```shell
2019-12-24 09:50:40 +00:00
docker run --name linkding -p 9090:9090 -d sissbruecker/linkding:latest
```
2022-05-14 17:23:52 +00:00
By default, the application runs on port `9090`, you can map it to a different host port by modifying the port mapping in the command above. If everything completed successfully, the application should now be running and can be accessed at http://localhost:9090, provided you did not change the port mapping.
2019-12-24 09:50:40 +00:00
2022-05-14 17:23:52 +00:00
Note that the command above will store the linkding SQLite database in the container, which means that deleting the container, for example when upgrading the installation, will also remove the database. For hosting an actual installation you usually want to store the database on the host system, rather than in the container. To do so, run the following command, and replace the `{host-data-folder}` placeholder with an absolute path to a folder on your host system where you want to store the linkding database:
2021-01-01 12:17:47 +00:00
```shell
2019-12-26 17:49:10 +00:00
docker run --name linkding -p 9090:9090 -v {host-data-folder}:/etc/linkding/data -d sissbruecker/linkding:latest
2019-12-24 09:50:40 +00:00
```
2022-05-14 17:23:52 +00:00
To upgrade the installation to a new version, remove the existing container, pull the latest version of the linkding Docker image, and then start a new container using the same command that you used above. There is a [shell script](https://github.com/sissbruecker/linkding/blob/master/install-linkding.sh) available to automate these steps. The script can be configured using environment variables, or you can just modify it.
2019-12-24 09:50:40 +00:00
2022-05-14 17:23:52 +00:00
To complete the setup, you still have to [create an initial user](#user-setup), so that you can access your installation.
2019-12-26 17:49:10 +00:00
2022-05-14 17:23:52 +00:00
### Using Docker Compose
2019-12-26 17:49:10 +00:00
2022-05-14 17:23:52 +00:00
To install linkding using [Docker Compose](https://docs.docker.com/compose/), you can use the [`docker-compose.yml`](https://github.com/sissbruecker/linkding/blob/master/docker-compose.yml) file. Copy the [`.env.sample`](https://github.com/sissbruecker/linkding/blob/master/.env.sample) file to `.env`, configure the parameters, and then run:
```shell
docker-compose up -d
```
2022-05-14 17:23:52 +00:00
To complete the setup, you still have to [create an initial user](#user-setup), so that you can access your installation.
2021-01-01 12:17:47 +00:00
### User setup
2022-05-14 17:23:52 +00:00
For security reasons, the linkding Docker image does not provide an initial user, so you have to create one after setting up an installation. To do so, replace the credentials in the following command and run it:
2021-01-01 12:17:47 +00:00
**Docker**
```shell
docker exec -it linkding python manage.py createsuperuser --username=joe --email=joe@example.com
```
2022-05-14 17:23:52 +00:00
**Docker Compose**
```shell
docker-compose exec linkding python manage.py createsuperuser --username=joe --email=joe@example.com
```
2021-01-01 12:17:47 +00:00
The command will prompt you for a secure password. After the command has completed you can start using the application by logging into the UI with your credentials.
2022-05-14 17:23:52 +00:00
### Managed Hosting Options
2022-05-14 17:23:52 +00:00
Self-hosting web applications on your own hardware (unfortunately) still requires a lot of technical know-how, and commitment to maintenance, with regard to keeping everything up-to-date and secure. This can be a huge entry barrier for people who are interested in self-hosting linkding, but lack the technical knowledge to do so. This section is intended to provide alternatives in form of managed hosting solutions. Note that these options are usually commercial offerings, that require paying a (usually monthly) fee for the convenience of being managed by another party. The technical knowledge required to make use of individual options is going to vary, and no guarantees can be made that every option is accessible for everyone. That being said, I hope this section helps in making the application accessible to a wider audience.
2019-12-24 09:50:40 +00:00
2022-05-14 17:23:52 +00:00
- [linkding on fly.io](https://github.com/fspoettel/linkding-on-fly) - Guide for hosting a linkding installation on [fly.io](https://fly.io). By [fspoettel](https://github.com/fspoettel)
2019-12-24 09:50:40 +00:00
2022-05-14 17:23:52 +00:00
## Browser Extension
2022-05-14 17:23:52 +00:00
linkding comes with an official browser extension that allows to quickly add bookmarks, and search bookmarks through the browser's address bar. You can get the extension here:
- [Mozilla Addon Store](https://addons.mozilla.org/de/firefox/addon/linkding-extension/)
- [Chrome Web Store](https://chrome.google.com/webstore/detail/linkding-extension/beakmhbijpdhipnjhnclmhgjlddhidpe)
2022-05-14 17:23:52 +00:00
The extension is open-source as well, and can be found [here](https://github.com/sissbruecker/linkding-extension).
2022-05-14 17:23:52 +00:00
## Community
2022-05-14 17:23:52 +00:00
This section lists community projects around using linkding, in alphabetical order. If you have a project that you want to share with the linkding community, feel free to submit a PR to add your project to this section.
2022-05-14 17:23:52 +00:00
- [Helm Chart](https://charts.pascaliske.dev/charts/linkding/) Helm Chart for deploying linkding inside a Kubernetes cluster. By [pascaliske](https://github.com/pascaliske)
- [linkding-extension](https://github.com/jeroenpardon/linkding-extension) Chromium compatible extension that wraps the linkding bookmarklet. Tested with Chrome, Edge, Brave. By [jeroenpardon](https://github.com/jeroenpardon)
- [linkding-injector](https://github.com/Fivefold/linkding-injector) Injects search results from linkding into the sidebar of search pages like google and duckduckgo. Tested with Firefox and Chrome. By [Fivefold](https://github.com/Fivefold)
2019-12-24 09:50:40 +00:00
## Development
The application is open source, so you are free to modify or contribute. The application is built using the Django web framework. You can get started by checking out the excellent Django docs: https://docs.djangoproject.com/en/3.2/. The `bookmarks` folder contains the actual bookmark application, `siteroot` is the Django root application. Other than that the code should be self-explanatory / standard Django stuff 🙂.
2019-12-24 09:50:40 +00:00
### Prerequisites
- Python 3
- Node.js
### Setup
Create a virtual environment for the application (https://docs.python.org/3/tutorial/venv.html):
```
python3 -m venv ~/environments/linkding
```
Activate the environment for your shell:
```
source ~/environments/linkding/bin/activate[.csh|.fish]
```
Within the active environment install the application dependencies from the application folder:
```
pip3 install -Ur requirements.txt
```
Install frontend dependencies:
```
npm install
```
Initialize database:
```
mkdir -p data
python3 manage.py migrate
```
Create a user for the frontend:
```
python3 manage.py createsuperuser --username=joe --email=joe@example.com
```
2019-12-27 11:32:44 +00:00
Start the Node.js development server (used for compiling JavaScript components like tag auto-completion) with:
```
npm run dev
```
2019-12-24 09:50:40 +00:00
Start the Django development server with:
```
python3 manage.py runserver
```
2020-04-04 11:04:07 +00:00
The frontend is now available under http://localhost:8000