Skip to content

Commit

Permalink
Merging extra stuff from master
Browse files Browse the repository at this point in the history
  • Loading branch information
DatGuyChucky committed Apr 4, 2023
1 parent b94776f commit 3aee502
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions koala/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
load_dotenv()

BOT_TOKEN = os.environ['DISCORD_TOKEN']
BOT_OWNER = os.environ.get('BOT_OWNER')
BOT_OWNER_ENV = os.environ.get('BOT_OWNER')
BOT_OWNER_STR = BOT_OWNER_ENV.split(',')
BOT_OWNER = [int(item) for item in BOT_OWNER_STR]

API_PORT = os.environ.get("API_PORT", 8080)

ADMINS = os.getenv('ADMINS')

DB_KEY = os.environ.get('SQLITE_KEY', "2DD29CA851E7B56E4697B0E1F08507293D761A05CE4D1B628663F411A8086D99")
ENCRYPTED_DB = (not os.name == 'nt') and eval(os.environ.get('ENCRYPTED', "True"))

Expand Down

0 comments on commit 3aee502

Please sign in to comment.