https://github.com/moverval/dw-manager
Discord Bot for DeineWerbung
https://github.com/moverval/dw-manager
discord typescript typescript3
Last synced: about 2 months ago
JSON representation
Discord Bot for DeineWerbung
- Host: GitHub
- URL: https://github.com/moverval/dw-manager
- Owner: moverval
- License: mit
- Created: 2020-05-07T23:16:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-26T23:14:23.000Z (over 4 years ago)
- Last Synced: 2025-10-19T11:29:13.964Z (8 months ago)
- Topics: discord, typescript, typescript3
- Language: TypeScript
- Homepage:
- Size: 849 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# DW Bot
A Discord Bot that was made for [Deine Werbung](https://discord.gg/Kmvf9wB)
## Installing
This Bot is based on NodeJS (NodeJS must be installed to run it). To use it, install the packages, configure it and build the files.
```cli
npm ci
touch .env
npm run build
```
In ``.env``, ``BOT_TOKEN``, ``BOT_PREFIX``, ``MAIN_GUILD`` and ``CONFIRMATION_CHANNEL`` must be defined Variables.
Example .env:
```.env
BOT_TOKEN="Y0UR.T0K3N"
BOT_PREFIX="++"
MAIN_GUILD="460424836246929409"
CONFIRMATION_CHANNEL="466225497593085972"
```
The Bot also needs a folder called ``data`` (in project folder) to save and load data.
```
mkdir data
```
After configuring, the bot can be started with
```cli
npm run start
```