https://github.com/virtuallyaverage/config-bot
https://github.com/virtuallyaverage/config-bot
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/virtuallyaverage/config-bot
- Owner: virtuallyaverage
- Created: 2026-06-04T22:52:57.000Z (11 days ago)
- Default Branch: main
- Last Pushed: 2026-06-05T18:21:26.000Z (10 days ago)
- Last Synced: 2026-06-05T20:06:24.179Z (10 days ago)
- Language: TypeScript
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Uses `pnpm`
`pnpm i`
`pnpm run dev`
`pnpm run build`
`pnpm run dev`
# Deploy
```bash
# Ubutntu 24.4 Oracle Cloud (smallest alloc)
# Remember to set the NC to an ephemeral public IP address.
# Only using 14% of 60gb at base.
# 9% of 6GB ram at idle
#ssh (windows):
ssh -i "path-to-key" ubuntu@ip
# System packages
sudo apt update && sudo apt install -y git curl
# Node.js
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejs
# pnpm
sudo corepack enable
corepack prepare pnpm@latest --activate
# pm2
pnpm install pm2@latest -g
git clone https://github.com/virtuallyaverage/config-bot.git
cd config-bot
pnpm i
pm2 start "pnpm run start" --name config-bot
pm2 save
pm2 startup
```
Needs A .env with this format:
```.env
DISCORD_TOKEN=REPLACEME
GUILD_ID=REPLACEME
GITHUB_TOKEN=REPLACEME
```