From cd67ff8f109495fdd26c13a22b93396d02e149da Mon Sep 17 00:00:00 2001 From: Supositware Date: Thu, 16 Jun 2022 09:26:24 +0200 Subject: [PATCH] Example .env and better install instruction --- .env.example | 3 +++ readme.md | 15 +++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..eb18a07 --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +token=your.token +clientId=botClientId +guildId=DevGuildId \ No newline at end of file diff --git a/readme.md b/readme.md index 95e7133..91ff3b2 100644 --- a/readme.md +++ b/readme.md @@ -22,15 +22,18 @@ git checkout slash npm install ``` -To run the bot either use pm2 +To run the bot for the first time you need to execute [deploy-commands.js](deploy-commands.js) so the commands can be registered, don't forget to set your .env accordingly. +``node deploy-commands.js`` + +then you can just run it normally. +``node index.js`` + +If you want to run the bot automatically you can use pm2 ``` npm install -g pm2 -pm2 start index.js --name(insert name) +pm2 start index.js --name (insert name) ``` -or with node ``node index.js`` - -If on linux you can also do - +If you are on linux and don't need automatic restart on crash you can just do ``nohup node index.js &`` ## Built With