Bot for pixelcanvas.io
There are no ports required for pixelbot
This was to make sure the parkervcp/images:python 3 image worked.
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:python_3.7 | ghcr.io/ptero-eggs/yolks:python_3.7 |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Owner Discord UID | The Discord UID of the bot owner. | OWNER_UID | copy from discord | Yes | Yes |
Discord Bot Token | Get the app token from https://discordapp.com/developers/applications/me | BOT_TOKEN | get from discord developers | Yes | Yes |
Bot Name | The name that you want set for the bot | BOT_NAME | Ispyra | Yes | Yes |
Imgur API ID | Add your Imgur API client_id if you want. https://api.imgur.com/oauth2/addclient | IMGUR_KEY | Yes | Yes | |
Imgur Secret | Add your Imgur API client_secret if you want. https://api.imgur.com/oauth2/addclient | IMGUR_SECRET | Yes | Yes |
#!/bin/ash
# Pixel Bot Installation Script
#
# Server Files: /mnt/server
apk add --no-cache git gcc g++ libffi-dev make
cd /mnt/server
echo "Cloning pixel-bot repo"
git clone https://github.com/Ispira/pixel-bot.git .
echo "Installing python requirements into folder"
pip install -U --target $(pwd) discord imgurpython xkcd pynacl
## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"