iceshrimp-legacy/README.md

206 lines
6.5 KiB
Markdown
Raw Normal View History

2021-02-07 03:43:55 +01:00
<div align="center">
2022-07-19 02:39:19 +02:00
<a href="https://stop.voring.me/">
2022-08-09 00:10:31 +02:00
<img src="./.github/title_float.svg" alt="Calckey logo" style="border-radius:50%" width="400"/>
</a>
2022-07-19 07:07:59 +02:00
2022-07-19 02:39:19 +02:00
**🌎 **[Calckey](https://stop.voring.me/)** is an open source, decentralized social media platform that's free forever! 🚀**
2022-07-19 07:07:59 +02:00
2021-02-07 03:43:55 +01:00
</div>
2021-11-20 10:21:18 +01:00
<div>
2021-03-24 03:57:12 +01:00
2022-07-19 01:51:31 +02:00
<img src="https://pool.jortage.com/voringme/misskey/e7cd2a17-8b23-4e1e-b5cf-709480c623e2.png" align="right" height="320px"/>
2018-09-12 22:35:11 +02:00
2022-08-08 08:07:22 +02:00
# ✨ About Calckey
- Calckey is based off of Misskey, a powerful microblogging server on ActivityPub with features such as emoji reactions, a customizable web ui, rich chatting, and much more!
- Calckey adds many quality of life changes and bug fixes for users and instance admins alike.
- Read **[this document](./CALCKEY.md)** all for current and future differences.
- Notable differences:
2022-09-14 02:21:23 +02:00
- Improved UI/UX (especially on mobile)
- Improved notifications
- Improved instance security
2022-08-08 08:07:22 +02:00
- Recommended Instances timeline
2022-10-28 00:30:26 +02:00
- OCR image captioning
2022-09-14 02:21:23 +02:00
- New and improved Groups
2022-11-09 10:04:30 +01:00
- Better intro tutorial
2022-08-08 08:07:22 +02:00
- Many more user and admin settings
2022-09-14 02:21:23 +02:00
- [So much more!](./CALCKEY.md)
2019-02-05 16:13:31 +01:00
2021-11-20 10:21:18 +01:00
</div>
2017-01-23 10:25:52 +01:00
2021-11-20 10:21:18 +01:00
<div style="clear: both;"></div>
2018-04-15 22:04:56 +02:00
2022-08-10 08:14:51 +02:00
# 🥂 Links
2022-11-07 00:06:44 +01:00
- 💸 Liberapay: <https://liberapay.com/ThatOneCalculator>
- 💁 Matrix support room: <https://matrix.to/#/#calckey:matrix.fedibird.com>
- 📜 Instance list: <https://calckey.fediverse.observer/list>
- 📖 JoinFediverse Wiki: <https://joinfediverse.wiki/What_is_Calckey%3F>
2022-08-10 08:14:51 +02:00
2022-11-04 22:38:38 +01:00
# 🌠 Getting started
2022-07-28 04:36:58 +02:00
2022-11-04 22:38:38 +01:00
This guide will work for both **starting from scratch** and **migrating from Misskey**.
2022-11-04 22:56:30 +01:00
## 📦 Dependencies
2022-11-04 22:46:51 +01:00
2022-11-09 22:38:27 +01:00
- At least 🐢 [NodeJS](https://nodejs.org/en/) v16.15.0 (v18.12.1 recommended)
2022-11-04 22:38:38 +01:00
> ⚠️ NodeJS v19 is not supported as of right now because of [this issue](https://github.com/nodejs/node-gyp/issues/2757).
2022-08-10 09:50:50 +02:00
2022-11-09 22:38:27 +01:00
- 🐘 At least [PostgreSQL](https://www.postgresql.org/) v12
2022-11-04 22:46:51 +01:00
2022-11-09 22:38:27 +01:00
- 🍱 At least [Redis](https://redis.io/) v6 (v7 recommended)
2022-11-04 22:46:51 +01:00
2022-11-09 22:38:27 +01:00
- 🛰️ (Optional, for non-Docker) [pm2](https://pm2.io/)
2022-11-05 02:48:45 +01:00
2022-08-08 08:07:22 +02:00
## 👀 Get folder ready
2022-07-27 20:31:56 +02:00
2022-07-19 20:59:20 +02:00
```sh
2022-07-19 02:36:11 +02:00
git clone https://codeberg.org/thatonecalculator/calckey.git
cd calckey/
2022-07-24 08:15:09 +02:00
# git checkout main # if you want only stable versions
2022-07-27 20:31:56 +02:00
```
2022-10-27 10:01:27 +02:00
## 📩 Install dependencies
```sh
2022-11-04 22:49:06 +01:00
# nvm install 18 && nvm alias default 18 && nvm use 18
2022-10-27 10:01:27 +02:00
corepack enable
```
## 💅 Customize
2022-08-10 08:18:00 +02:00
- To add custom CSS for all users, edit `./custom/instance.css`.
- To add static assets (such as images for the splash screen), place them in the `./custom/` directory. They'll then be avaliable on `https://yourinstance.tld/static-assets/filename.ext`.
2022-11-13 20:32:17 +01:00
## 🧑‍🔬 Configuring a new instance
- Run `cp .config/example.yml .config/default.yml`
- Edit `.config/default.yml`, making sure to fill out required fields.
- Also copy and edit `.config/docker_example.env` to `.config/docker.env` if you're using Docker.
2022-11-04 22:38:38 +01:00
## 🚚 Migrating from Misskey to Calckey
> ⚠️ Because of their changes, migrating from Foundkey is not supported.
```sh
2022-11-13 20:32:17 +01:00
cp ../misskey/.config/default.yml ./.config/default.yml # replace `../misskey/` with misskey path, add `docker.env` if you use Docker
2022-11-04 22:38:38 +01:00
cp -r ../misskey/files . # if you don't use object storage
```
2022-11-04 22:43:00 +01:00
## 🍀 NGINX
2022-11-09 22:38:27 +01:00
<details>
<summary>Click to see an example NGINX config:</summary>
```nginx
# Replace example.tld with your domain
# For WebSocket
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
proxy_cache_path /tmp/nginx_cache levels=1:2 keys_zone=cache1:16m max_size=1g inactive=720m use_temp_path=off;
server {
listen 80;
listen [::]:80;
server_name example.tld;
# For SSL domain validation
root /var/www/html;
location /.well-known/acme-challenge/ { allow all; }
location /.well-known/pki-validation/ { allow all; }
location / { return 301 https://$server_name$request_uri; }
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name example.tld;
ssl_session_timeout 1d;
ssl_session_cache shared:ssl_session_cache:10m;
ssl_session_tickets off;
# To use Let's Encrypt certificate
ssl_certificate /etc/letsencrypt/live/example.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.tld/privkey.pem;
# To use Debian/Ubuntu's self-signed certificate (For testing or before issuing a certificate)
#ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
#ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
# SSL protocol settings
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers off;
ssl_stapling on;
ssl_stapling_verify on;
# Change to your upload limit
client_max_body_size 80m;
# Proxy to Node
location / {
2022-11-09 22:39:03 +01:00
proxy_pass http://127.0.0.1:3000;
2022-11-09 22:38:27 +01:00
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_redirect off;
# If it's behind another reverse proxy or CDN, remove the following.
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 https;
# For WebSocket
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
# Cache settings
proxy_cache cache1;
proxy_cache_lock on;
proxy_cache_use_stale updating;
add_header X-Cache $upstream_cache_status;
}
}
```
</details>
2022-11-04 22:43:00 +01:00
2022-08-08 08:07:22 +02:00
## 🚀 Build and launch!
2022-07-27 20:31:56 +02:00
2022-11-04 22:38:38 +01:00
### 🐢 NodeJS
#### `git pull` and run these steps to update Calckey in the future!
2022-07-27 20:31:56 +02:00
```sh
# git pull
yarn install
2022-08-10 05:06:49 +02:00
NODE_ENV=production yarn run build && yarn run migrate
2022-11-05 02:48:45 +01:00
pm2 start "NODE_ENV=production yarn start" --name Calckey
2022-07-19 07:07:59 +02:00
```
2022-07-29 03:25:02 +02:00
2022-11-04 22:38:38 +01:00
### 🐋 Prebuilt Docker image
2022-08-08 08:07:22 +02:00
```sh
2022-11-10 04:03:28 +01:00
docker pull thatonecalculator/calckey
2022-11-04 22:38:38 +01:00
docker up -d
```
### 🐳 Docker Compose
```sh
sudo docker compose build
sudo docker-compose run --rm web yarn run init
sudo docker compose up -d
2022-08-08 08:07:22 +02:00
```
2022-11-09 10:52:23 +01:00
## 😉 Tips & Tricks
2022-11-09 22:17:39 +01:00
- I'd ***strongly*** recommend against using CloudFlare, but if you do, make sure to turn code minification off.
- For push notifications, run `npx web-push generate-vapid-keys`, the put the public and private keys into Control Panel > General > ServiceWorker.
- For translations, make a [DeepL](https://deepl.com) account and generate an API key, then put it into Control Panel > General > DeepL Translation.
- For link previews, go to Control Panel > Security > Summaly Proxy and put in `https://summaly.arkjp.net`.