Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,9 @@ from flask import Flask, send_from_directory, render_template_string
|
|
5 |
import streamlit as st
|
6 |
from pyngrok import ngrok
|
7 |
|
|
|
|
|
|
|
8 |
# Directory to store videos
|
9 |
VIDEO_DIR = "videos"
|
10 |
if not os.path.exists(VIDEO_DIR):
|
|
|
5 |
import streamlit as st
|
6 |
from pyngrok import ngrok
|
7 |
|
8 |
+
# Hardcode your ngrok token here
|
9 |
+
ngrok.set_auth_token("2t7Jj4yyE3WswdAoz23Rkki03l0_53iu3por9LUB5uFPWYRFy")
|
10 |
+
|
11 |
# Directory to store videos
|
12 |
VIDEO_DIR = "videos"
|
13 |
if not os.path.exists(VIDEO_DIR):
|