Skip to content

Instantly share code, notes, and snippets.

@acotie
Created December 6, 2010 18:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acotie/730666 to your computer and use it in GitHub Desktop.
Save acotie/730666 to your computer and use it in GitHub Desktop.
structure of Flaskr.
├── README
├── TODO
├── flaskr.db
├── flaskr.py
├── flaskr.pyc
├── flaskr_tests.py
├── schema.sql
├── static
│ ├── compass
│ │ ├── _theme_template.scss
│ │ ├── shCore.scss
│ │ └── shThemeRDark.scss
│ ├── embed
│ │ ├── AcXxuKylFc.js
│ │ └── wCgUTUVfis.js
│ ├── images
│ │ ├── body_bg.gif
│ │ ├── body_bottom_bg.gif
│ │ ├── body_top_bg.gif
│ │ ├── codetype-bn01.png
│ ├── js
│ │ ├── easySlider1.5.js
│ │ ├── jquery-1.3.2.min.js
│ │ ├── jquery.cycle.all.min.js
│ │ ├── jquery.js
│ │ └── jquery_tabs.js
│ ├── scripts
│ │ ├── clipboard.swf
│ │ ├── shAutoloader.js
│ ├── style.css
│ ├── style_skin.css
│ └── styles
│ ├── help.png
│ └── shThemeRDark.css
└── templates
├── about.html
├── blog.html
├── contact.html
├── entry.html
├── entry_fork.html
├── entry_tag.html
├── footer.html
├── header.html
├── index.html
├── layout.html
├── login.html
├── recent.html
├── show_entries.html
├── show_entries2.html
└── work.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment