Skip to content

Commit

Permalink
Add minimal home page
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed Dec 11, 2018
1 parent 1b6fe4a commit eca06dc
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions .flaskenv
@@ -0,0 +1 @@
FLASK_ENV=development
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
*~
__pycache__
.DS_Store
.env
1 change: 1 addition & 0 deletions Pipfile
Expand Up @@ -7,3 +7,4 @@ name = "pypi"

[packages]
flask = "*"
python-dotenv = "*"
10 changes: 9 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions app.py
@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from flask import Flask
app = Flask(__name__)


@app.route('/')
def hello():
return 'Welcome to My Watchlist!'

0 comments on commit eca06dc

Please sign in to comment.