Skip to content

Commit 0181bc7

Browse files
committed
add requirements.txt and app.json that are required for Heroku deploy
1 parent 932214d commit 0181bc7

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

app.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "Detox toxic chat classifier",
3+
"description": "Detox toxic chat message classifier testing webapp",
4+
"keywords": ["toxicity", "toxic", "salty", "classifier", "nlp", "naivebayes", "cs410", "uiuc"],
5+
"scripts": {
6+
},
7+
"env": {
8+
},
9+
"formation": {
10+
},
11+
"buildpacks": [
12+
{
13+
"url": "heroku/python"
14+
}
15+
]
16+
}

requirements.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
csv
2+
nltk
3+
numpy
4+
pandas
5+
joblib
6+
sklearn
7+
gevent
8+
flask
9+
json

0 commit comments

Comments
 (0)