From 7876f5c2c3ce3947ee960434533c37713c517105 Mon Sep 17 00:00:00 2001 From: veryCrunchy Date: Sun, 14 Jul 2024 19:57:23 +0200 Subject: [PATCH] chore: add .env.example --- .env.example | 1 + nuxt.config.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..028177d0 --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +NUXT_DISCORD_BOT_TOKEN="" \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index 04fafcfb..3b2f2071 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -104,7 +104,7 @@ export default defineNuxtConfig({ "@pinia/nuxt", ], runtimeConfig: { - discord_bot_token: "env.NUXT_DISCORD_BOT_TOKEN", + discord_bot_token: "", // can be set with NUXT_DISCORD_BOT_TOKEN environment variable public: { GQL_HOST: "https://api.premid.app/v3", },