diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a830589 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +dash +dash-bootstrap-components +networkx +pandas +plotly diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..0ba6812 --- /dev/null +++ b/vercel.json @@ -0,0 +1,17 @@ +{ + "builds": [ + { + "src": "app.py", + "use": "@vercel/python", + "config": { + "maxLambdaSize": "15mb" + } + } + ], + "routes": [ + { + "src": "/(.*)", + "dest": "app.py" + } + ] +} \ No newline at end of file