BLG2 / AtomBotWeb

WebPanel made for AtomBot

Home Page:https://atom-bot.xyz/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AtomBotWeb

WebPanel made for AtomBot made with love by BLG.

This wbsite is not fully ready yet and wil keep growing, also if you find any bug feel free to let me know or fix it yourselves.

DiscordBot Code

Live preview


Make a new file in the AtomConfiguration folder called "PrivateConfig.cs", then add below content.

namespace AtomConfiguration
{
    public class PrivateConfig
    {
        public static string BotOwnerId { get; } = "YOUR_DISCORD_ID";
        public static string BotId { get; } = "DISCORD_BOT_ID";
        public static string client_secret { get; } = @"DISCORD_BOT_CLIENT_SECRET";
        public static string redirect_uri { get; } = "https://localhost:7134/DiscordUser/DiscordSignIn/";
        public static string XorKey { get; } = "XOR_KEY_SAME_AS_THE_BOT";
        public static string AesKey { get; } = "AES_KEY";
        public static string BotApiUrl { get; } = "http://localhost:8080";
        public static string DiscordInviteUrl { get; } = "DISCORD_INVITE_URL";
        public static string DiscordAuthUrl { get; } = "DISCORD_OAUTH_URL";
    }
}

About

WebPanel made for AtomBot

https://atom-bot.xyz/


Languages

Language:C# 32.0%Language:HTML 29.0%Language:JavaScript 21.7%Language:CSS 10.8%Language:SCSS 6.4%