├── .gitignore ├── README.markdown ├── app.py ├── bower.json ├── coffee └── all.coffee ├── requirements.txt ├── sass └── all.sass ├── static ├── css_all.css └── js_all.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *.pyc 3 | 4 | .webassets-cache 5 | bower_components 6 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambard/flask-skeleton/HEAD/README.markdown -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambard/flask-skeleton/HEAD/app.py -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambard/flask-skeleton/HEAD/bower.json -------------------------------------------------------------------------------- /coffee/all.coffee: -------------------------------------------------------------------------------- 1 | alert "Coffeescript works too!" 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambard/flask-skeleton/HEAD/requirements.txt -------------------------------------------------------------------------------- /sass/all.sass: -------------------------------------------------------------------------------- 1 | body:after 2 | content: "SASS works" 3 | -------------------------------------------------------------------------------- /static/css_all.css: -------------------------------------------------------------------------------- 1 | /* line 1 */ 2 | body:after { 3 | content: "SASS works"; 4 | } 5 | -------------------------------------------------------------------------------- /static/js_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambard/flask-skeleton/HEAD/static/js_all.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambard/flask-skeleton/HEAD/templates/index.html --------------------------------------------------------------------------------