Setting up project

This commit is contained in:
John Washam
2016-06-29 16:26:32 -07:00
commit bc9dc293fc
3 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.idea/

1
README.md Normal file
View File

@@ -0,0 +1 @@
# computer-science-flash-cards

12
index.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()