Skip to content

Commit e02976a

Browse files
committed
Add documentation.
1 parent a723e71 commit e02976a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Flask Calculator
2+
3+
## To Run
4+
5+
All commands to be run from inside the repository directory.
6+
```
7+
$ pip install -r requirements.txt
8+
$ python setup.py
9+
$ python main.py
10+
```
11+
12+
## To Publish to Heroku
13+
14+
All commands to be run from inside the repository directory.
15+
```
16+
$ git init # Only necessary if this is not already a git repository
17+
$ heroku create
18+
$ git push heroku master # If you have any changes or files to add, commit them before you push.
19+
$ heroku addons:create heroku-postgresql:hobby-dev
20+
$ heroku run python setup.py
21+
$ heroku open
22+
```

0 commit comments

Comments
 (0)