1
0
Fork 1
mirror of https://example.com synced 2024-11-24 17:16:40 +09:00
A fun, new, open way to experience social media
Find a file
ThatOneCalculator 8beb778950 a
2022-11-04 14:23:25 -07:00
.config
.github
.okteto
.vscode Update extensions.json 2022-05-14 18:50:16 +09:00
.yarn/plugins/@yarnpkg
chart
custom
cypress Obliteration of Ai-chan 🐱🔫 2022-08-08 14:58:27 -07:00
locales
packages
scripts
.dockerignore Update .dockerignore 2022-05-31 08:33:03 -07:00
.editorconfig
.gitattributes
.gitignore
.node-version Update .node-version 2022-06-06 21:01:00 +09:00
.vsls.json
.yarnrc.yml
CALCKEY.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
cypress.config.ts
docker-compose.yml
Dockerfile
gulpfile.js
LICENSE
package.json
Procfile Create Procfile 2019-04-05 18:17:30 +09:00
README.md
SECURITY.md

Calckey logo

🌎 Calckey 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 all for current and future differences.
  • Notable differences:
    • Improved UI/UX (especially on mobile)
    • Improved notifications
    • Improved instance security
    • Recommended Instances timeline
    • OCR image captioning
    • New and improved Groups
    • Many more user and admin settings
    • So much more!

🥂 Links

🏂 Starting a new instance

You need at least 🐢 NodeJS v16.15.0 (v18.20.0 recommended!) and at least 🧶 Yarn v3.2!

🚚 Migrating from Misskey to Calckey

You need at least 🐢 NodeJS v16.15.0 (v19 recommended!) and at least 🧶 Yarn v3.2!

👀 Get folder ready

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

# 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!

# git pull
yarn install
NODE_ENV=production yarn run build && yarn run migrate
# Edit service to point to calckey folder and restart!

🐳 Docker

# git pull
docker compose build
# docker compose stop misskey
docker compose up -d