5.3 KiB
FoundKey Setup and Installation Guide
We thank you for your interest in setting up your FoundKey server! This guide describes how to install and setup FoundKey.
1. Create FoundKey user
Running FoundKey as root is not a good idea. Create a separate user to run FoundKey.
In debian for example:
adduser --disabled-password --disabled-login foundkey
2. Install dependencies
FoundKey requires the following packages to run:
Dependencies 📦
- Node.js (16.x)
- PostgreSQL (12.x / 13.x is preferred)
- Redis
The following are needed to compile native npm modules:
- A C/C++ compiler toolchain like GCC or Clang.
- Python (3.x)
Optional
To install the dependiencies on Debian (or derivatives like Ubuntu) you can use the following commands:
curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
apt install build-essential python3 nodejs postgresql redis
# Optional dependencies
apt install ffmpeg
corepack enable # for yarn
You will need to adapt this for whichever OS you are using to host FoundKey.
3. Install FoundKey
-
Connect to the
foundkey
usersu - foundkey
-
Clone the FoundKey repository
git clone --recursive https://akkoma.dev/FoundKeyGang/FoundKey foundkey
-
Navigate to the repository
cd foundkey
-
Install FoundKey's dependencies
yarn install
4. Configure FoundKey
-
Copy
.config/example.yml
to.config/default.yml
.cp .config/example.yml .config/default.yml
-
Edit
default.yml
with a text editor- Make sure you set the PostgreSQL and Redis settings correctly.
- Use a strong password for the PostgreSQL user and take note of it since it'll be needed later.
5. Build FoundKey
Build foundkey with the following:
NODE_ENV=production yarn build
If you're still encountering errors about some modules, use node-gyp:
npx node-gyp configure
npx node-gyp build
NODE_ENV=production yarn build
6. Init DB
- Create the appropriate PostgreSQL users with respective passwords, and empty database as named in the configuration file. Make sure the database connection also works correctly when run from the user that will later run FoundKey, or it could cause problems later. The encoding of the database should be UTF-8.
sudo -u postgres psql
create database foundkey with encoding = 'UTF8';
create user foundkey with encrypted password '{YOUR_PASSWORD}';
grant all privileges on database foundkey to foundkey;
\q
- Run the database initialisation
yarn run init
7. Running FoundKey
Well done! Now, you can begin using FoundKey.
Launching manually
Run NODE_ENV=production npm start
to launch FoundKey manually. To stop the server, use Ctrl-C.
Launch with systemd
- Run
systemctl --edit --full --force foundkey.service
, and paste the following:
[Unit]
Description=FoundKey daemon
[Service]
Type=simple
User=foundkey
ExecStart=/usr/bin/npm start
WorkingDirectory=/home/foundkey/foundkey
Environment="NODE_ENV=production"
TimeoutSec=60
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=foundkey
Restart=always
[Install]
WantedBy=multi-user.target
-
Save the file, then enable and start FoundKey.
systemctl enable --now foundkey
You can check if the service is running with systemctl status foundkey
.
Launch with OpenRC
- Copy the following text to
/etc/init.d/foundkey
:
#!/sbin/openrc-run
name=foundkey
description="FoundKey daemon"
command="/usr/bin/npm"
command_args="start"
command_user="foundkey"
supervisor="supervise-daemon"
supervise_daemon_args=" -d /home/foundkey/foundkey -e NODE_ENV=\"production\""
pidfile="/run/${RC_SVCNAME}.pid"
depend() {
need net
use logger
# alternatively, uncomment if using nginx reverse proxy
#use logger nginx
}
-
Set the service to start on boot
rc-update add foundkey
-
Start the FoundKey service
rc-service foundkey start
You can check if the service is running with rc-service foundkey status
.
How to update your FoundKey server to the latest version
git pull
git submodule update --init
yarn install
NODE_ENV=production yarn build
yarn migrate
- Restart your FoundKey process to apply changes
- Enjoy
If you encounter any problems with updating, please try the following:
yarn clean
oryarn cleanall
- Retry update (Don't forget
yarn install
)
If you have any questions or troubles, feel free to contact us on IRC (#foundkey
on irc.akkoma.dev
, port 6697
with SSL)!