https://github.com/mikmuellerdev/quickclip
A self hosted, simple alternative to PasteBin.
https://github.com/mikmuellerdev/quickclip
clipboard clipboard-management clipboard-manager go
Last synced: 21 days ago
JSON representation
A self hosted, simple alternative to PasteBin.
- Host: GitHub
- URL: https://github.com/mikmuellerdev/quickclip
- Owner: MikMuellerDev
- License: gpl-2.0
- Created: 2022-01-19T14:28:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-05T18:31:30.000Z (about 3 years ago)
- Last Synced: 2025-01-06T19:17:26.202Z (over 1 year ago)
- Topics: clipboard, clipboard-management, clipboard-manager, go
- Language: Go
- Homepage:
- Size: 770 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QuickClip
A self-hosted, simple alternative to PasteBin.
## Install
### Docker 🐋
The easiest way of installing QuickClip is most likely using `Docker`.
To get started, using following `docker-compose.yml` file is recommended.
```yml
version: "3.7"
services:
quickclip:
image: mikmuellerdev/quickclip
container_name: quickclip
ports:
- 8081:8081
volumes:
- /tmp/quickclip-config:/app/QuickClip/config
```
Make sure to change common variables, like the port or the volumes.
After configuration, run the following command to start the service
```bash
sudo docker-compose up -d
```
### Conventional
Navigate to the `release` section of this repository, then download the according tarball that fits your system architecture.
To check your system's architecture, run
```bash
uname -a
```
After downloading is complete, *unpack* this tarball using a command like
```bash
tar -xvf Quickclip-0.0.0.tar.gz
```
Then navigate in the newly unpacked `QuickClip` directory and it's subfolder `bin`. Here you can just run the executable.
## Issues
On Debian `./QuickClip-0.4.0-Beta: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.32' not found (required by ./QuickClip-0.4.0-Beta)` can happen when running the executable on an old system.
## Fix
It is likely that this has already been fixed, if not you know what do to.
```
sudo apt install golang
```
```
cd QuickClip
```
```
make
```
Your custom-built executable can now be found in `./build/QuicklipX.X.X`.