Skip to content

Commit 84cdeef

Browse files
committed
add heroku deployment requirements and procfile
1 parent 223919a commit 84cdeef

File tree

6 files changed

+126
-111
lines changed

6 files changed

+126
-111
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.pem
2+
.idea/workspace.xml

.idea/workspace.xml

+106-110
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: gunicorn flaskapp:app

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<h1> Welcome To the Project Osspal Quick Assessment Tool</h1>
22

3-
<p> The quick assessment tool is hosted on AWS, using the framework Python Flask. </p>
3+
<p> The quick assessment tool is hosted on <del>AWS</del>, using the framework Python Flask. </p>
4+
5+
## Heroku deployment links
6+
7+
http://virantha.com/2013/11/14/starting-a-simple-flask-app-with-heroku/
8+
9+
https://progblog.io/How-to-deploy-a-Flask-App-to-Heroku/
10+
11+
https://coderwall.com/p/pstm1w/deploying-a-flask-app-at-heroku
412

513
<p> To run this project, simpley clone the git repository into your machine, and in the terminal use `python flaskapp.py`. And then, open your browser and go to localhost:5000, you will see the homepage of this project. </p>
614

flaskapp.pyc

1.42 KB
Binary file not shown.

requirements.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Flask==0.11.1
2+
Flask-Cors==2.1.2
3+
itsdangerous==0.24
4+
click==6.6
5+
lxml==3.6.4
6+
MarkupSafe==0.23
7+
Jinja2==2.8
8+
Werkzeug==0.11.11
9+

0 commit comments

Comments
 (0)