Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

Commit

Permalink
Test Railway
Browse files Browse the repository at this point in the history
  • Loading branch information
mfdavies committed Jan 7, 2024
1 parent 5aca9b4 commit bf157f3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 21 deletions.
File renamed without changes.
26 changes: 5 additions & 21 deletions backend/server/src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
annotated-types==0.6.0
anyio==4.2.0
bidict==0.22.1
blinker==1.7.0
CacheControl==0.13.1
cachelib==0.10.2
cachetools==5.3.2
certifi==2023.11.17
cffi==1.16.0
charset-normalizer==3.3.2
click==8.1.7
colorama==0.4.6
cryptography==41.0.7
distro==1.9.0
exceptiongroup==1.2.0
filelock==3.13.1
firebase==4.0.1
firebase-admin==6.3.0
Flask==3.0.0
Flask-Cors==4.0.0
Flask-Mail==0.9.1
fsspec==2023.12.2
google-api-core==2.15.0
Expand All @@ -30,6 +28,7 @@ google-resumable-media==2.7.0
googleapis-common-protos==1.62.0
grpcio==1.60.0
grpcio-status==1.60.0
gunicorn==21.2.0
h11==0.14.0
httpcore==1.0.2
httplib2==0.22.0
Expand All @@ -45,20 +44,9 @@ msgpack==1.0.7
networkx==3.2.1
numba==0.58.1
numpy==1.26.3
nvidia-cublas-cu12==12.1.3.1
nvidia-cuda-cupti-cu12==12.1.105
nvidia-cuda-nvrtc-cu12==12.1.105
nvidia-cuda-runtime-cu12==12.1.105
nvidia-cudnn-cu12==8.9.2.26
nvidia-cufft-cu12==11.0.2.54
nvidia-curand-cu12==10.3.2.106
nvidia-cusolver-cu12==11.4.5.107
nvidia-cusparse-cu12==12.1.0.106
nvidia-nccl-cu12==2.18.1
nvidia-nvjitlink-cu12==12.3.101
nvidia-nvtx-cu12==12.1.105
openai==1.6.1
openai-whisper==20231117
packaging==23.2
proto-plus==1.23.0
protobuf==4.25.1
pyasn1==0.5.1
Expand All @@ -69,20 +57,16 @@ pydantic_core==2.14.6
PyJWT==2.8.0
pyparsing==3.1.1
python-dotenv==1.0.0
python-engineio==4.8.2
python-socketio==5.10.0
python-env==1.0.0
regex==2023.12.25
requests==2.31.0
rsa==4.9
simple-websocket==1.0.0
sniffio==1.3.0
sympy==1.12
tiktoken==0.5.2
torch==2.1.2
tqdm==4.66.1
triton==2.1.0
typing_extensions==4.9.0
uritemplate==4.1.1
urllib3==2.1.0
Werkzeug==3.0.1
wsproto==1.2.0
13 changes: 13 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from flask import Flask, jsonify
import os

app = Flask(__name__)


@app.route('/')
def index():
return jsonify({"Choo Choo": "Welcome to your Flask app 🚅"})


if __name__ == '__main__':
app.run(debug=True, port=os.getenv("PORT", default=5000))
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
click==7.1.2
Flask==1.1.2
gunicorn==20.0.4
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
Werkzeug==1.0.1

0 comments on commit bf157f3

Please sign in to comment.