forked from FujiwaraChoki/MoneyPrinter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check empty environment variables & Reformat .env.example (FujiwaraCh…
…oki#198) * reformat .env.example: removed inline comments due to parsing error in load_dotenv * Add empty environment variable checks
- Loading branch information
Showing
3 changed files
with
64 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,32 @@ | ||
# See EnvironmentVariables.md for more information. | ||
ASSEMBLY_AI_API_KEY="" # Optional | ||
|
||
# Necessary API Keys | ||
# ------------------- | ||
|
||
# TikTok Session ID | ||
# Obtain your session ID by logging into TikTok and copying the sessionid cookie. | ||
TIKTOK_SESSION_ID="" | ||
IMAGEMAGICK_BINARY="" # Download from https://imagemagick.org/script/download.php | ||
PEXELS_API_KEY="" # Get from https://www.pexels.com/api/ | ||
OPENAI_API_KEY="" # Optional | ||
GOOGLE_API_KEY="" # Get from https://makersuite.google.com/app/apikey | ||
|
||
# ImageMagick Binary Path | ||
# Download ImageMagick from https://imagemagick.org/script/download.php | ||
IMAGEMAGICK_BINARY="" | ||
|
||
# Pexels API Key | ||
# Register at https://www.pexels.com/api/ to get your API key. | ||
PEXELS_API_KEY="" | ||
|
||
# Optional API Keys | ||
# ----------------- | ||
|
||
# OpenAI API Key | ||
# Visit https://openai.com/api/ for details on obtaining an API key. | ||
OPENAI_API_KEY="" | ||
|
||
# AssemblyAI API Key | ||
# Sign up at https://www.assemblyai.com/ to receive an API key. | ||
ASSEMBLY_AI_API_KEY="" | ||
|
||
# Google API Key | ||
# Generate your API key through https://makersuite.google.com/app/apikey | ||
GOOGLE_API_KEY="" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters