P2THE28 commited on
Commit
66adf58
·
verified ·
1 Parent(s): 61afa80

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -6,3 +6,15 @@ colorTo: "purple"
6
  sdk: "docker"
7
  pinned: false
8
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  sdk: "docker"
7
  pinned: false
8
  ---
9
+ # StartupAI front + run with existing app.py
10
+
11
+ Place files `index.html`, `style.css`, `script.js` in same folder as your existing `app.py` (the one you uploaded).
12
+
13
+ Install Python deps:
14
+ ```bash
15
+ python -m venv venv
16
+ source venv/bin/activate # windows: venv\Scripts\activate
17
+ pip install -r requirements.txt
18
+ # optionally install firebase-admin if you'll use Firestore
19
+ pip install firebase-admin
20
+