calckey/README.md

143 lines
5.0 KiB
Markdown
Raw Normal View History

2021-02-07 02:43:55 +00:00
<div align="center">
2022-07-19 00:39:19 +00:00
<a href="https://stop.voring.me/">
2022-08-08 22:10:31 +00:00
<img src="./.github/title_float.svg" alt="Calckey logo" style="border-radius:50%" width="400"/>
</a>
2022-07-19 05:07:59 +00:00
2022-07-19 00:39:19 +00:00
**🌎 **[Calckey](https://stop.voring.me/)** is an open source, decentralized social media platform that's free forever! 🚀**
2022-07-19 05:07:59 +00:00
2021-02-07 02:43:55 +00:00
</div>
2021-11-20 09:21:18 +00:00
<div>
2021-03-24 02:57:12 +00:00
2022-07-18 23:51:31 +00:00
<img src="https://pool.jortage.com/voringme/misskey/e7cd2a17-8b23-4e1e-b5cf-709480c623e2.png" align="right" height="320px"/>
2018-09-12 20:35:11 +00:00
2022-08-08 06:07:22 +00: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!
2022-08-08 06:07:22 +00:00
- 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 00:21:23 +00:00
- Improved UI/UX (especially on mobile)
- Improved notifications
- Improved instance security
2022-08-08 06:07:22 +00:00
- Recommended Instances timeline
2022-10-27 22:30:26 +00:00
- OCR image captioning
2022-09-14 00:21:23 +00:00
- New and improved Groups
2022-11-09 09:04:30 +00:00
- Better intro tutorial
2022-08-08 06:07:22 +00:00
- Many more user and admin settings
2022-09-14 00:21:23 +00:00
- [So much more!](./CALCKEY.md)
2019-02-05 15:13:31 +00:00
2021-11-20 09:21:18 +00:00
</div>
2017-01-23 09:25:52 +00:00
2021-11-20 09:21:18 +00:00
<div style="clear: both;"></div>
2018-04-15 20:04:56 +00:00
2022-08-10 06:14:51 +00:00
# 🥂 Links
2022-11-06 23:06:44 +00: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-11-15 06:24:36 +00:00
- 🐋 Docker Hub: <https://hub.docker.com/r/thatonecalculator/calckey>
2022-08-10 06:14:51 +00:00
2022-11-04 21:38:38 +00:00
# 🌠 Getting started
2022-07-28 02:36:58 +00:00
2022-11-04 21:38:38 +00:00
This guide will work for both **starting from scratch** and **migrating from Misskey**.
2022-11-04 21:56:30 +00:00
## 📦 Dependencies
2022-11-04 21:46:51 +00:00
2022-11-09 21:38:27 +00:00
- At least 🐢 [NodeJS](https://nodejs.org/en/) v16.15.0 (v18.12.1 recommended)
2022-11-04 21:38:38 +00: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 07:50:50 +00:00
2022-11-09 21:38:27 +00:00
- 🐘 At least [PostgreSQL](https://www.postgresql.org/) v12
2022-11-04 21:46:51 +00:00
2022-11-09 21:38:27 +00:00
- 🍱 At least [Redis](https://redis.io/) v6 (v7 recommended)
2022-11-04 21:46:51 +00:00
2022-11-09 21:38:27 +00:00
- 🛰️ (Optional, for non-Docker) [pm2](https://pm2.io/)
2022-11-05 01:48:45 +00:00
2022-08-08 06:07:22 +00:00
## 👀 Get folder ready
2022-07-27 18:31:56 +00:00
2022-07-19 18:59:20 +00:00
```sh
2022-07-19 00:36:11 +00:00
git clone https://codeberg.org/thatonecalculator/calckey.git
cd calckey/
2022-07-24 06:15:09 +00:00
# git checkout main # if you want only stable versions
2022-07-27 18:31:56 +00:00
```
2022-10-27 08:01:27 +00:00
## 📩 Install dependencies
```sh
2022-11-04 21:49:06 +00:00
# nvm install 18 && nvm alias default 18 && nvm use 18
2022-10-27 08:01:27 +00:00
corepack enable
```
## 💅 Customize
2022-08-10 06:18:00 +00: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-15 08:23:53 +00:00
- To update custom assets without rebuilding, just run `yarn run gulp`.
2022-11-13 19:32:17 +00: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 21:38:38 +00:00
## 🚚 Migrating from Misskey to Calckey
> ⚠️ Because of their changes, migrating from Foundkey is not supported.
```sh
2022-11-13 19:32:17 +00:00
cp ../misskey/.config/default.yml ./.config/default.yml # replace `../misskey/` with misskey path, add `docker.env` if you use Docker
2022-11-04 21:38:38 +00:00
cp -r ../misskey/files . # if you don't use object storage
```
2022-11-04 21:43:00 +00:00
## 🍀 NGINX
- Run `sudo cp ./calckey.nginx.conf /etc/nginx/sites-avaliable/ && cd /etc/nginx/sites-avaliable/`
- Edit `calckey.nginx.conf` to reflect your instance properly
- Run `sudo cp ./calckey.nginx.conf ../sites-enabled/`
- Run `sudo nginx -t` to validate that the config is valid, then restart the NGINX service.
2022-11-09 21:38:27 +00:00
</details>
2022-11-04 21:43:00 +00:00
2022-08-08 06:07:22 +00:00
## 🚀 Build and launch!
2022-07-27 18:31:56 +00:00
2022-11-04 21:38:38 +00:00
### 🐢 NodeJS
2022-11-04 21:38:38 +00:00
#### `git pull` and run these steps to update Calckey in the future!
2022-07-27 18:31:56 +00:00
```sh
# git pull
yarn install
2022-08-10 03:06:49 +00:00
NODE_ENV=production yarn run build && yarn run migrate
2022-11-05 01:48:45 +00:00
pm2 start "NODE_ENV=production yarn start" --name Calckey
2022-07-19 05:07:59 +00:00
```
2022-07-29 01:25:02 +00:00
2022-11-04 21:38:38 +00:00
### 🐋 Prebuilt Docker image
2022-08-08 06:07:22 +00:00
```sh
2022-11-10 03:03:28 +00:00
docker pull thatonecalculator/calckey
2022-11-04 21:38:38 +00:00
docker up -d
```
### 🐳 Docker Compose
```sh
docker compose build
docker-compose run --rm web yarn run init
docker compose up -d
2022-08-08 06:07:22 +00:00
```
2022-11-09 09:52:23 +00:00
## 😉 Tips & Tricks
2022-11-16 04:18:04 +00:00
- When editing the config file, please don't fill out the settings at the bottom. They're designed *only* for managed hosting, not self hosting. Those settings are much better off being set in Calckey's control panel.
- I'd ***strongly*** recommend against using CloudFlare, but if you do, make sure to turn code minification off.
2022-11-09 21:17:39 +00:00
- 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.
2022-11-15 00:53:08 +00:00
- To add another admin account:
- Go to the user's page > 3 Dots > About > Moderation > turn on "Moderator"
- Go back to Overview > click the clipboard icon next to the ID
- Run `psql -d calckey` (or whatever the database name is)
- Run `UPDATE "user" SET "isAdmin" = true WHERE id='999999';` (replace `999999` with the copied ID)
- Have the new admin log out and log back in