Calckey logo This is a horribly broken fork of Calckey not intended to be run on its own. [![no github badge](https://nogithub.codeberg.page/badge.svg)](https://nogithub.codeberg.page/) [![status badge](https://ci.astolfo.cool/api/badges/natty/calckey/status.svg)](https://ci.astolfo.cool/natty/calckey)
Calc (the Calckey mascot) smoking a fat dart # âœĻ About Calckey Please see the [upstream version](https://codeberg.org/calckey/calckey) if you seriously intend to run this project. # 🌠 I wanna build this mess anyway My primary way to build this project is using Podman and deploy as a container: ```sh docker build -t calckey . ``` Continue reading if you want to build it natively. ## 🧑‍ðŸ’ŧ Dependencies - ðŸĒ At least [NodeJS](https://nodejs.org/en/) v18.16.0 (v20 recommended) - Install with [nvm](https://github.com/nvm-sh/nvm) - 🐘 At least [PostgreSQL](https://www.postgresql.org/) v12 (v14 recommended) - ðŸą At least [Redis](https://redis.io/) v6 (v7 recommended) - Web Proxy (one of the following) - 🍀 Nginx (recommended) - ðŸĶĶ Caddy - ðŸŠķ Apache - ⚡ [libvips](https://www.libvips.org/) ### 😗 Optional dependencies - [FFmpeg](https://ffmpeg.org/) for video transcoding - Full text search (one of the following) - ðŸĶ” [Sonic](https://crates.io/crates/sonic-server) - [MeiliSearch](https://www.meilisearch.com/) - [ElasticSearch](https://www.elastic.co/elasticsearch/) ### 🏗ïļ Build dependencies - ðŸĶ€ At least [Rust](https://www.rust-lang.org/) v1.68.0 - ðŸĶŽ C/C++ compiler & build tools - `build-essential` on Debian/Ubuntu Linux - `base-devel` on Arch Linux - 🐍 [Python 3](https://www.python.org/) ## 👀 Get folder ready ```sh git clone https://git.astolfo.cool/natty/calckey.git cd calckey/ ``` ## ðŸ“Đ Install dependencies ```sh # nvm install 19 && nvm use 19 corepack enable corepack prepare pnpm@latest --activate pnpm i ``` ## Build ```sh pnpm run build ``` ## Database This setup assumes you already have a valid PostgreSQL database with a model corresponding to the Calckey version 14.0.0-RC3. ## Configuring a new server - 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. ## Running the server ```sh pnpm run start ``` ## Web proxy ### Caddy - Add the following block to your `Caddyfile`, replacing `example.tld` with your own domain: ```caddy example.tld { reverse_proxy http://127.0.0.1:3000 } ``` - Reload your caddy configuration