Add a basic .gitignore #2

Merged
gergely merged 1 commits from gitignore into master 2018-06-29 07:05:16 +00:00
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__/

View File

@ -24,6 +24,7 @@ class CalendarSocialApp(Flask):
app = CalendarSocialApp(__name__)
@app.route('/')
def hello():
return render_template('index.html')