Releases: theinternetcafe/syborg
Releases · theinternetcafe/syborg
Initial Release
Working on Alpine Linux (containerized) or on Windows natively
Usage
Configuration
- Use the example below as a template to create ./config.json
{
"bot_token": "Bot <TOKEN_GOES_HERE>",
"owner_id": "YourName#1337",
"use_sharding": false,
"shard_id": 0,
"shard_count": 1
}
Local
- Run command
./syborg-<arch>
Local Docker
- Pull container image:
docker pull tzakrajs/syborg
- Run container image with config attached:
docker run tzakrajs/syborg -v ./config.json:/config.json -p 8080:80
K8s
- Create configmap for the syborg config file
kubectl create configmap syborg-config --from-file=config.json
- Apply manifest to deploy syborg deployment
kubectl apply -f ./k8s-deployment.yaml