This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Initializes a git repository with some suggested best practices for DNAnexus | |
# workflow development & continuous integration. Run dx-ci-init.py in the root | |
# of your git repository; it creates the following, which you should then | |
# customize as you like: | |
# | |
# applets/hello-world | |
# Trivial applet template which you can build on or copy. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"maximumLineLength": 80, | |
"validateJSDoc": { | |
"checkParamNames": true, | |
"checkRedundantParams": true, | |
"requireParamTypes": true | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Pretend app setup stuff is here */ | |
/* Kick off app */ | |
jQuery(function($) { | |
var Gallery = app.module("gallery"); | |
app.Router = Backbone.Router.extend({ | |
routes: { | |
"add": "main_add" |