Updated the Firebase Storage Bucket to be from ENV Variables

This commit is contained in:
Tiago Ribeiro
2024-03-21 10:50:48 +00:00
parent bed07ca819
commit f02d113f40
4 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,3 @@
FIREBASE_BUCKET = 'storied-phalanx-349916.appspot.com'
AUDIO_FILES_PATH = 'download-audio/'
FIREBASE_LISTENING_AUDIO_FILES_PATH = 'listening_recordings/'
VIDEO_FILES_PATH = 'download-video/'

View File

@@ -16,6 +16,7 @@ load_dotenv()
# Get HeyGen token
TOKEN = os.getenv("HEY_GEN_TOKEN")
FIREBASE_BUCKET = os.getenv('FIREBASE_BUCKET')
# POST TO CREATE VIDEO
CREATE_VIDEO_URL = 'https://api.heygen.com/v1/template.generate'