Update smithery.yaml
This commit is contained in:
parent
06285d895f
commit
d7ff9b3bba
|
@ -3,24 +3,20 @@
|
||||||
version: 1
|
version: 1
|
||||||
runtime: "container"
|
runtime: "container"
|
||||||
build:
|
build:
|
||||||
dockerfile: "Dockerfile" # Path to your Dockerfile
|
dockerfile: "Dockerfile"
|
||||||
dockerBuildPath: "." # Docker build context
|
dockerBuildPath: "."
|
||||||
dockerBuildArgs:
|
|
||||||
DISCORD_TOKEN: ${discordToken}
|
|
||||||
dockerBuildEnv:
|
|
||||||
DISCORD_TOKEN: ${discordToken}
|
|
||||||
dockerRunEnv:
|
dockerRunEnv:
|
||||||
DISCORD_TOKEN: ${discordToken}
|
DISCORD_TOKEN: ${DISCORD_TOKEN}
|
||||||
startCommand:
|
startCommand:
|
||||||
type: http
|
type: http
|
||||||
configSchema:
|
configSchema:
|
||||||
type: object
|
type: object
|
||||||
required:
|
required:
|
||||||
- discordToken
|
- DISCORD_TOKEN
|
||||||
properties:
|
properties:
|
||||||
discordToken:
|
DISCORD_TOKEN:
|
||||||
type: string
|
type: string
|
||||||
title: "Discord Bot Token"
|
title: "Discord Bot Token"
|
||||||
description: "Discord bot token. Obtain this from the Discord Developer Portal."
|
description: "Discord bot token. Obtain this from the Discord Developer Portal."
|
||||||
exampleConfig:
|
exampleConfig:
|
||||||
discordToken: YOUR_DISCORD_BOT_TOKEN
|
DISCORD_TOKEN: YOUR_DISCORD_BOT_TOKEN
|
||||||
|
|
Loading…
Reference in New Issue