vishnu-coder commited on
Commit
0a11807
·
1 Parent(s): 3ac6383

Deploy-ready version with Streamlit and Vercel redirect setup

Browse files
deployment/vercel/index.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta http-equiv="refresh" content="0; URL='https://youranalyst-coder-twitter-sentiment-analysis.streamlit.app'" />
5
+ <title>Twitter Sentiment Intelligence</title>
6
+ </head>
7
+ <body>
8
+ <h3>Redirecting to the live Deloitte-ready dashboard…</h3>
9
+ <p>If you are not redirected automatically, <a href="https://youranalyst-coder-twitter-sentiment-analysis.streamlit.app">click here</a>.</p>
10
+ </body>
11
+ </html>
deployment/vercel/vercel.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": 2,
3
+ "builds": [
4
+ { "src": "deployment/vercel/index.html", "use": "@vercel/static" }
5
+ ],
6
+ "routes": [
7
+ { "src": "/(.*)", "dest": "deployment/vercel/index.html" }
8
+ ]
9
+ }