From 3a3a6b6054ad56af13b07d8f2b301b79408bba9e Mon Sep 17 00:00:00 2001 From: Anubhav Das Date: Sun, 21 Jul 2019 19:09:47 +0530 Subject: [PATCH] Updated Hosting your bot (markdown) --- Hosting-your-bot.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Hosting-your-bot.md b/Hosting-your-bot.md index 134385e..a3080c5 100644 --- a/Hosting-your-bot.md +++ b/Hosting-your-bot.md @@ -74,6 +74,10 @@ To re-attach to the *screen* after you logged back in: ``` screen -r mybot ``` +Or +``` +screen -d -m mybot +``` ## What to read next? If you plan on hosting multiple bots on your server, it's recommended to use `virtualenv`. It allows you to install and upgrade Python modules via `pip` for one project, without worrying how it affects other projects on the server. Read [this external article](http://docs.python-guide.org/en/latest/dev/virtualenvs/) for more information.