From 5bcac2a2b03f158e28d962fc6df08361057373e5 Mon Sep 17 00:00:00 2001 From: diced Date: Mon, 20 Jun 2022 15:07:15 -0700 Subject: [PATCH] refactor(readme): more info --- README.md | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 84 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9452cbb..dc4daee 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,91 @@ - URL Formats (uuid, dates, random alphanumeric, original name, zws) - Discord embeds (OG metadata) - Gallery viewer, and multiple file format support +- Code highlighting - Easy setup instructions on [docs](https://zipl.vercel.app/) (One command install `docker-compose up -d`) -## Installing -[See how to install here](https://zipl.vercel.app/docs/get-started) +# Usage -## Configuration -[See how to configure here](https://zipl.vercel.app/docs/config/overview) +## Install & run with Docker +This section requires [Docker](https://docs.docker.com/get-docker/) and [docker-compose](https://docs.docker.com/compose/install/). -## Theming -[See how to theme here](https://zipl.vercel.app/docs/themes/reference) +```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 +This section requires [nginx](https://nginx.org/). + +```nginx +server { + listen 80 default_server; + client_max_body_size 100M; + server_name ; + 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/). + +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/uploaders/sharex) + +# Flameshot (Linux) +This section requires [Flameshot](https://www.flameshot.org/), [jq](https://stedolan.github.io/jq/) and xsel. + +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 + +## Bug reports +Create an issue on GitHub, please include the following: +* 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. \ No newline at end of file