Skip to content

Instantly share code, notes, and snippets.

View varundey's full-sized avatar
🧼
Keep bugs and virus away

Varun Dey varundey

🧼
Keep bugs and virus away
View GitHub Profile
@varundey
varundey / .gitignore
Last active March 13, 2017 17:14 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@varundey
varundey / app.py
Created July 8, 2016 21:03 — forked from rosner/app.py
Simple flask app with user login, registration based on twitters bootstrap
from flask import Flask, render_template
from flask.ext.security import SQLAlchemyUserDatastore, Security
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.bootstrap import Bootstrap
from flask_mail import Mail
from flask.ext.security import UserMixin, RoleMixin
app = Flask(__name__)