zipline/README.md

120 lines
5.3 KiB
Markdown
Raw Normal View History

2021-09-04 17:01:08 -05:00
<div align="center">
<img src="https://raw.githubusercontent.com/diced/zipline/trunk/public/zipline_small.png"/>
2022-06-25 23:41:42 -05:00
2022-10-02 18:01:05 -05:00
A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!
2022-06-25 23:41:42 -05:00
2022-10-02 18:01:05 -05:00
![Stars](https://img.shields.io/github/stars/diced/zipline?logo=github&style=flat)
![Version](https://img.shields.io/github/package-json/v/diced/zipline?logo=git&logoColor=white&style=flat)
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/diced/zipline/trunk?logo=git&logoColor=white&style=flat)
[![Discord](https://img.shields.io/discord/729771078196527176?color=%23777ed3&label=discord&logo=discord&logoColor=white&style=flat)](https://discord.gg/EAhCRfGxCF)
![Build](https://img.shields.io/github/workflow/status/diced/zipline/Build?logo=github&style=flat)
[![Docker Image (trunk)](https://img.shields.io/github/workflow/status/diced/zipline/Push%20Docker%20Images?label=Docker%20%28trunk%29&logo=github&style=flat)](https://github.com/diced/zipline/pkgs/container/zipline/?tag=trunk)
2022-10-02 18:01:33 -05:00
[![Docker Image (release)](https://img.shields.io/github/workflow/status/diced/zipline/Push%20Release%20Docker%20Images?label=Docker%20%28release%29&logo=github&style=flat)](https://github.com/diced/zipline/pkgs/container/zipline/?tag=latest)
2022-06-25 23:41:42 -05:00
2021-09-04 17:01:08 -05:00
</div>
2021-06-23 13:20:20 -05:00
2021-09-04 17:01:08 -05:00
## Features
2021-06-23 13:20:20 -05:00
- Configurable
- Fast
- Built with Next.js & React
- Token protected uploading
2022-02-21 01:01:31 -05:00
- Image uploading
2022-08-16 17:25:44 -05:00
- Image compression
- Password Protected Uploads
2022-02-21 01:01:31 -05:00
- URL shortening
- Text uploading
2022-02-21 12:26:26 -05:00
- URL Formats (uuid, dates, random alphanumeric, original name, zws)
- Discord embeds (OG metadata)
- Gallery viewer, and multiple file format support
2022-06-20 17:07:15 -05:00
- Code highlighting
2022-08-24 22:37:57 -05:00
- Fully customizable Discord webhook notifications
2022-10-02 18:01:05 -05:00
- User invites
- Easy setup instructions on [docs](https://zipl.vercel.app/) (One command install `docker-compose up -d`)
2021-06-23 13:20:20 -05:00
2022-06-20 17:07:15 -05:00
# Usage
2021-09-04 17:01:08 -05:00
2022-06-20 17:07:15 -05:00
## Install & run with Docker
This section requires [Docker](https://docs.docker.com/get-docker/) and [docker-compose](https://docs.docker.com/compose/install/).
2021-06-23 13:20:20 -05:00
2022-06-20 17:07:15 -05:00
```shell
git clone https://github.com/diced/zipline
cd zipline
docker-compose up -d
```
### After installing
After installing, please edit the `docker-compose.yml` file and find the line that says `SECRET=changethis` and replace `changethis` with a random string.
Ways you could generate the string could be from a password managers generator, or you could just slam your keyboard and hope for the best.
## Building & running from source
This section requires [nodejs](https://nodejs.org), [yarn](https://yarnpkg.com/) or [npm](https://npmjs.com).
```shell
git clone https://github.com/diced/zipline
cd zipline
# npm install
yarn install
# npm run build
yarn build
# npm start
yarn start
```
# NGINX Proxy
2022-07-06 11:57:39 -05:00
This section requires [NGINX](https://nginx.org/).
2022-06-20 17:07:15 -05:00
```nginx
server {
listen 80 default_server;
client_max_body_size 100M;
server_name <your domain (optional)>;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
```
# Website
The default port is `3000`, once you have accessed it you can see a login screen. The default credentials are "administrator" and "password". Once you login please immediately change the details to something more secure. You can do this by clicking on the top right corner where it says "administrator" with a gear icon and clicking Manage Account.
# ShareX (Windows)
This section requires [ShareX](https://www.getsharex.com/).
2022-09-24 12:41:03 -05:00
After navigating to Zipline, click on the top right corner where it says your username and click Manage Account. Scroll down to see "ShareX Config", select the one you would prefer using. After this you can import the .sxcu into sharex. [More information here](https://zipl.vercel.app/docs/guides/uploaders/sharex)
2022-06-20 17:07:15 -05:00
# Flameshot (Linux)
2022-06-25 23:41:42 -05:00
This section requires [Flameshot](https://www.flameshot.org/), [jq](https://stedolan.github.io/jq/), and [xsel](https://github.com/kfish/xsel).
2022-06-20 17:07:15 -05:00
2022-09-24 12:41:03 -05:00
You can either use the script below, or generate one directly from Zipline (just like how you can generate a ShareX config).
2022-06-20 17:07:15 -05:00
To upload files using flameshot we will use a script. Replace $TOKEN and $HOST with your own values, you probably know how to do this if you use linux.
```shell
DATE=$(date '+%h_%Y_%d_%I_%m_%S.png');
flameshot gui -r > ~/Pictures/$DATE;
curl -H "Content-Type: multipart/form-data" -H "authorization: $TOKEN" -F file=@$1 $HOST/api/upload | jq -r 'files[0].url' | xsel -ib
```
# Contributing
2022-06-25 23:41:42 -05:00
2022-06-20 17:07:15 -05:00
## Bug reports
2022-07-06 11:57:39 -05:00
Create an issue on GitHub, please include the following (if one of them is not applicable to the issue then it's not needed):
2022-06-20 17:07:15 -05:00
* The steps to reproduce the bug
* Logs of Zipline
* The version of Zipline
* Your OS & Browser including server OS
* What you were expecting to see
## Feature requests
Create an issue on GitHub, please include the following:
* Breif explanation of the feature in the title (very breif please)
* How it would work (detailed, but optional)
## Pull Requests (contributions to the codebase)
Create a pull request on GitHub. If your PR does not pass the action checks, then please fix the errors. If your PR was submitted before a release, and I have pushed a new release, please make sure to update your PR to reflect any changes, usually this is handled by GitHub.