29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using PluginManager;
|
|
using Spectre.Console;
|
|
|
|
namespace DiscordBot;
|
|
|
|
public static class Installer
|
|
{
|
|
public static void GenerateStartupConfig()
|
|
{
|
|
AnsiConsole.MarkupLine("Welcome to the [bold]SethBot[/] installer !");
|
|
AnsiConsole.MarkupLine("First, we need to configure the bot. Don't worry, it will be quick !");
|
|
|
|
var token = AnsiConsole.Ask<string>("Please enter the bot [yellow]token[/]:");
|
|
var prefix = AnsiConsole.Ask<string>("Please enter the bot [yellow]prefix[/]:");
|
|
var serverId = AnsiConsole.Ask<string>("Please enter the [yellow]Server ID[/]:");
|
|
|
|
if (string.IsNullOrWhiteSpace(serverId)) serverId = "NULL";
|
|
Config.AppSettings.Add("token", token);
|
|
Config.AppSettings.Add("prefix", prefix);
|
|
Config.AppSettings.Add("ServerID", serverId);
|
|
|
|
Config.AppSettings.SaveToFile();
|
|
|
|
AnsiConsole.MarkupLine("[bold]Config saved ![/]");
|
|
|
|
Config.Logger.Log("Config Saved", "Installer", isInternal: true);
|
|
}
|
|
}
|