https://github.com/s0ulf3re/toonkey
The Calckey fork powering The Tooniverse
https://github.com/s0ulf3re/toonkey
fediverse misskey
Last synced: about 1 month ago
JSON representation
The Calckey fork powering The Tooniverse
- Host: GitHub
- URL: https://github.com/s0ulf3re/toonkey
- Owner: S0ulf3re
- License: agpl-3.0
- Created: 2022-09-05T23:11:45.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2022-10-27T11:43:23.000Z (over 2 years ago)
- Last Synced: 2025-01-29T14:13:00.169Z (3 months ago)
- Topics: fediverse, misskey
- Language: TypeScript
- Homepage: https://thetooniverse.xyz
- Size: 97.4 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
![]()
**๐ **[Calckey](https://stop.voring.me/)** is an open source, decentralized social media platform that's free forever! ๐**
# โจ 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:
- Improved UI/UX (especially on mobile)
- Improved notifications
- Improved instance security
- Recommended Instances timeline
- New and improved Groups
- Many more user and admin settings
- [So much more!](./CALCKEY.md)# ๐ฅ Links
- ๐ธ 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# ๐ Documentation
- Misskey documentation can be found on [Misskey Hub](https://misskey-hub.net/)
- To make a new Calckey instance, read their documentation for building from source or using Docker, but replace their repo link (`https://github.com/misskey-dev/misskey.git`) with `https://codeberg.org/thatonecalculator/calckey.git`.
- API reference can be found on any Calckey instance's [API doc page](https://stop.voring.me/api-doc)# ๐ Migrating from Misskey to Calckey
You need at least ๐ข NodeJS v16.15.0 (v18.4.0 recommended!) and *exactly* ๐งถ Yarn v3.2.2!
> โ ๏ธ Please don't use NodeJS v18.6.0, as it's known to cause problems.
## ๐ Get folder ready
```sh
git clone https://codeberg.org/thatonecalculator/calckey.git
cd calckey/
# git checkout main # if you want only stable versions
cp ../misskey/.config/default.yml ./.config/default.yml # replace `../misskey/` with misskey path, replace `default.yml` with `docker.yml` if you use docker
# cp -r ../misskey/files . # if you don't use object storage
```## ๐ฉ Install dependencies
```sh
# nvm install 18.4.0 && nvm alias default 18.4.0 && nvm use 18.4.0
corepack enable
yarn set version berry
```## ๐ Customize
- 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`.## ๐ Build and launch!
### `git pull` and run these steps to update Calckey in the future!
```sh
# git pull
yarn install # prepend `YARN_CHECKSUM_BEHAVIOR=update` if it doesn't work
NODE_ENV=production yarn run build && yarn run migrate
# Edit service to point to calckey folder and restart!
```### ๐ณ Docker
```sh
# git pull
sudo docker compose build
# sudo docker compose stop misskey
sudo docker compose up -d
```