Upload 4 files
#3
by
hotboxxgenn - opened
- README.md +1 -0
- app.py +8 -0
- genbuddy_manifest.json +7 -0
- requirements.txt +1 -0
README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Install `pip install -r requirements.txt` and run `python app.py`
|
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from flask import Flask
|
| 2 |
+
app = Flask(__name__)
|
| 3 |
+
@app.route('/')
|
| 4 |
+
def index():
|
| 5 |
+
return '<h1>GenBuddy Flask App</h1>'
|
| 6 |
+
|
| 7 |
+
if __name__=='__main__':
|
| 8 |
+
app.run(host='0.0.0.0', port=5000)
|
genbuddy_manifest.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"generated_at": "2025-10-13T14:42:59.474693",
|
| 3 |
+
"framework": "flask",
|
| 4 |
+
"mode": "full",
|
| 5 |
+
"command": "create an app that allows input of an invalid phone number that no longer works and turns the inputted phone number into a voip number that can receive sms and verification codes \n",
|
| 6 |
+
"project_name": "GenBuddy_20251013144259"
|
| 7 |
+
}
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
flask
|