Skip to content

Commit

Permalink
sublime project file
Browse files Browse the repository at this point in the history
  • Loading branch information
mtford90 committed Jan 17, 2015
1 parent 859ff94 commit 1158032
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@

gulp.task('test-python', shell.task(['./tests/manage.py test']));

})();

})();
16 changes: 16 additions & 0 deletions silk.sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"folders": [{
"follow_symlinks": true,
"path": ".",
"folder_exclude_patterns": [
".idea",
"bower_components",
"node_modules"
],
"file_exclude_patterns": [
".gitmodules",
".gitignore",
"LICENSE"
]
}]
}
3 changes: 2 additions & 1 deletion tests/example_app/gen.py → tests/gen.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""generate fake data for the example app"""
from example_app.models import Blind

__author__ = 'mtford'

def main():

venetian = Blind.objects.create(name='Venetian', child_safe=False)
roller = Blind.objects.create(name='Roller', child_safe=True)


if __name__ == '__main__':
main()

0 comments on commit 1158032

Please sign in to comment.