23 lines
570 B
YAML
23 lines
570 B
YAML
# Smithery configuration file: https://smithery.ai/docs/build/project-config/smithery.yaml
|
|
|
|
version: 1
|
|
runtime: "container"
|
|
build:
|
|
dockerfile: "Dockerfile"
|
|
dockerBuildPath: "."
|
|
dockerRunEnv:
|
|
DISCORD_TOKEN: ${DISCORD_TOKEN}
|
|
startCommand:
|
|
type: http
|
|
configSchema:
|
|
type: object
|
|
required:
|
|
- DISCORD_TOKEN
|
|
properties:
|
|
DISCORD_TOKEN:
|
|
type: string
|
|
title: "Discord Bot Token"
|
|
description: "Discord bot token. Obtain this from the Discord Developer Portal."
|
|
exampleConfig:
|
|
DISCORD_TOKEN: YOUR_DISCORD_BOT_TOKEN
|