1
0
Fork 0
calckey-cruft/README.md

97 lines
1.7 KiB
Markdown
Raw Normal View History

2023-05-10 15:30:52 -06:00
# Calckey
Calckey is Fediverse "social media" software similar to Mastodon.
Below are some notes about a test installation setup.
https://calckey.org/
https://codeberg.org/calckey/calckey
# Dependencies
## Debian
Tested on Debian 11 (Stable/Bullseye).
2023-05-10 15:44:19 -06:00
Not using Docker or Elasticsearch.
Install some dependencies from Debian repos:
2023-05-10 15:30:52 -06:00
```
apt update
apt install build-essential curl python3 python-is-python3 postgresql \
ffmpeg
apt install -t bullseye-backports redis
```
## NodeJS
This is dodgy, like "npm install". Calckey recommends using
nvm to manage NodeJS versions. So run:
```
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
```
The log out/in or run:
```
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
```
Then install the right version of `npm` with `nvm`:
```
nvm install 19
nvm use 19
```
Confirm correct version is running:
```
node -v
```
2023-05-10 15:44:19 -06:00
# Download and Install
2023-05-10 16:07:52 -06:00
Thusly.
2023-05-10 15:30:52 -06:00
```
git clone https://codeberg.org/calckey/calckey
cd calckey/
2023-05-10 16:07:52 -06:00
```
2023-05-10 15:30:52 -06:00
2023-05-10 15:44:19 -06:00
Install calckey NodeJS dependencies:
2023-05-10 15:30:52 -06:00
```
2023-05-10 15:44:19 -06:00
corepack enable
corepack prepare pnpm@latest --activate
pnpm i
# pnpm i --no-optional # without Tensorflow. Downloads it anyway.
2023-05-10 15:30:52 -06:00
```
2023-05-10 16:06:09 -06:00
# Setup
2023-05-10 16:07:52 -06:00
Setup thusly.
2023-05-10 16:06:09 -06:00
## Postgres
Database creation (change username at end):
```
sudo -u postgres createuser --createdb debian
psql postgres -c "create database calckey with encoding = 'UTF8';"
```
2023-05-10 15:30:52 -06:00
# Copyright
Unofficial project, not part of official Calckey software or
website. Upstream sources under their respective copyrights.
License: CC By SA 4.0 International and/or AGPLv3+ at your discretion.
*Copyright © 2023, Jeff Moe.*