diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ad3adb0..50a52a7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,7 +52,7 @@ A good bug report shouldn't leave others needing to chase you up for more inform - OS, Platform and Version (Windows, Linux, macOS, x86, ARM) - Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant. - Your input and the output - - Is the issue reproducable? Does it exist in previous versions? + - Is the issue reproducible? Does it exist in previous versions? #### How Do I Submit a Good Bug Report? @@ -66,7 +66,7 @@ We use GitHub issues to track bugs and errors. If you run into an issue with the Once it's filed: - The project team will label the issue accordingly. -- A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will try to support you as best as they can, but you may not recieve an instant. +- A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will try to support you as best as they can, but you may not receive an instant. - If the team discovers that this is an issue it will be marked `bug` or `error`, as well as possibly other tags relating to the nature of the error), and the issue will be left to be [implemented by someone](#your-first-code-contribution). ### Suggesting Enhancements diff --git a/README.md b/README.md index 56f4581..68e873c 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ Created by Lewis Menelaws & [TMRRW](https://tmrrwinc.ca) ](https://tmrrwinc.ca) +## Video Explainer +[![lewisthumbnail](https://user-images.githubusercontent.com/6053155/173631669-1d1b14ad-c478-4010-b57d-d79592a789f2.png) +](https://www.youtube.com/watch?v=3gjcY_00U1w) + ## Motivation 🤔 These videos on TikTok, YouTube and Instagram get MILLIONS of views across all platforms and require very little effort. The only original thing being done is the editing and gathering of all materials... @@ -65,6 +69,8 @@ Please read our [contributing guidelines](CONTRIBUTING.md) for more detailed inf Elebumm (Lewis#6305) - https://github.com/elebumm (Founder) +Jason (JasonLovesDoggo#1904) - https://github.com/JasonLovesDoggo + CallumIO - https://github.com/CallumIO HarryDaDev (hrvyy#9677) - https://github.com/ImmaHarry diff --git a/main.py b/main.py index b7f10e0..0cda238 100644 --- a/main.py +++ b/main.py @@ -15,10 +15,25 @@ import os, time """TODO - Refactor all .py files - Write tests in tests/ +""" + +""" +Load .env file if exists. If it doesnt exist, print a warning and launch the setup wizard. +If there is a .env file, check if the required variables are set. If not, print a warning and launch the setup wizard. """ +load_dotenv() + +client_id = os.getenv("REDDIT_CLIENT_ID") +client_secret = os.getenv("REDDIT_CLIENT_SECRET") +username = os.getenv("REDDIT_USERNAME") +password = os.getenv("REDDIT_PASSWORD") +reddit2fa = os.getenv("REDDIT_2FA") + +console.log("[bold green]Checking environment variables...") +time.sleep(1)