From d1cb5260a30826e0db1cf6d309e6d90e92b01b62 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Tue, 12 Jan 2021 19:47:30 +0100 Subject: [PATCH] Updated .gitignore so no config files will be stored --- .gitignore | 7 +++++-- run.py | 6 ++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 run.py diff --git a/.gitignore b/.gitignore index 97ef061..464e7f6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ # Exclude IDE Files .idea -# Project exclude paths -/venv/ \ No newline at end of file +# Exclude VENV +/venv/ + +# Exclude Config Files +token \ No newline at end of file diff --git a/run.py b/run.py new file mode 100644 index 0000000..6dea2c5 --- /dev/null +++ b/run.py @@ -0,0 +1,6 @@ +import discord + +file = open("TOKEN", "r") +token = file.read() +file.close() +