1
0
Fork 0
mirror of https://gitlab.com/niansa/discordlistforbots.git synced 2025-03-06 20:49:22 +01:00
No description
Find a file
2022-04-23 00:07:45 +00:00
controllers Added imprint 2021-06-11 19:07:35 +02:00
customstatic Added customizability 2021-03-23 14:37:14 +01:00
models Initial commit 2021-01-10 17:29:59 +01:00
static Added imprint 2021-06-11 19:07:35 +02:00
views Added imprint 2021-06-11 19:07:35 +02:00
.gitignore Updated layout 2021-02-24 15:02:14 +01:00
bots.sql Fixed data type for votes column 2021-03-24 12:04:35 +01:00
CMakeLists.txt Added customizability 2021-03-23 14:37:14 +01:00
LICENSE Added GPLv3 license file 2021-06-10 10:57:58 +00:00
main.cc Addded license headers 2021-06-10 13:58:43 +02:00
README.md Update README.md 2022-04-23 00:07:45 +00:00

Discord list for bots

Open source bot list website, for everyone who wants to drive a Discord bot list. Originally programmed for the list Discordlist For Bots (hence the name) whos owner then banned me, re-uploaded and re-licensed the code without permission. (see #Code thieves)

Configuration

Create a file named config.h in the root then paste and edit the following:

#define LISTEN_ADDR "0.0.0.0"
#define LISTEN_PORT 8082

#define DB_TYPE "postgresql"
#define DB_HOST "192.168.178.39"
#define DB_PORT 5432
#define DB_NAME "dfb"
#define DB_USER "julius"
#define DB_PASSWORD "6345786435663524675324"

#define OAUTH_URL "https://discord.com/api/oauth2/authorize?client_id=795612465130897420&redirect_uri=http%3A%2F%2Flocalhost:8082%2Fdiscordauth&response_type=code&scope=identify"
#define CLIENT_ID "795612465130897420"
#define CLIENT_SECRET "<your secret here>"
#define REDIRECT_URI "http://localhost:8082/discordauth"
#define BOT_TOKEN "<your bot token here>"
#define LOG_WEBHOOK "824208240333291561/eI39bQGclrizr0OzRGrB_W7QI3gfY7tlYpWv8RkkDVzIOVFRDTjgkuavE7YfkIzDcGsy"

#define MODERATORS {609486822715818000, 703944517048598568, 705557092802625576, 664869643567235097, 775017772358434817}

#define COMMUNITY "https://discord.gg/42vDtZxZSt"

#define SHORT_NAME "DFB"
#define LONG_NAME "Discordlist for Bots"
#define DESCRIPTION "Find a lot of bots that will be useful to your server"

#define IMPRINT "<your imprint here>"

(Original config.h, no longer in use)

Adding custom assets

You may add custom assets to the customstatic directory and cmake will copy these on next run.