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
<head> | |
<title>My Cool Meteor App</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
<link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> | |
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> | |
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> | |
</head> | |
<body> | |
Your app specific stuff here |
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
// Packages we need | |
var GitHubApi = require("github"); | |
var sugar = require("sugar"); | |
var _ = require("underscore")._; | |
// Start of variable assignments | |
var issues_by_numbers = {}; | |
var project = "MyGitHubProject"; | |
var github = new GitHubApi({ |
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
var getOpenGitIssues = function(){ | |
var issuesByNumber = Fiber(function(){ | |
var future = new Future(); | |
var _issues; | |
var _issuesByNumber = {}; | |
github.issues.repoIssues({user:self.project.username, repo: self.project.name}, function(error, data){ | |
future.return(data) | |
}); | |
_issues = future.wait(); |
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
{ | |
"meteor": {}, | |
"packages": { | |
"router": { | |
"git": "https://github.com/justinriggio/meteor-router.git" | |
}, | |
"x-editable-bootstrap": { | |
"git": "https://github.com/digilord/meteor-x-editable-bootstrap.git" | |
}, | |
"underscore-string-latest": {}, |
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
{ | |
"packages": { | |
"accounts-guest": {}, | |
"jquery-mobile": { | |
"git": "https://github.com/Pyo25/meteor-jquery-mobile.git" | |
} | |
} | |
} |
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
<link href="http://code.jquery.com/mobile/1.4.1/jquery.mobile-1.4.1.min.css" rel="stylesheet"> | |
<script src="http://code.jquery.com/mobile/1.4.1/jquery.mobile-1.4.1.min.js"></script> |
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
var util = require('util'); | |
var clc = require('cli-color'); | |
var notice = clc.cyanBright.bold; | |
var error = clc.red.bold; | |
var warn = clc.yellow; | |
// Setup logging functions | |
var inspect = function(message) { | |
util.log(util.inspect(message, {colors: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
module.exports = function(grunt) { | |
grunt.initConfig({ | |
watch: { | |
js: { | |
files: [ | |
'index.js', | |
'brains.js', | |
'lib/*.js' | |
], |
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
. | |
├── ASP | |
├── ActionScript | |
├── Alignment | |
├── AppleScript | |
├── Batch\ File | |
├── C# | |
├── C++ | |
├── CSS | |
├── Clojure |
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
{ | |
"pusher": "0.1.3", | |
"mime": "1.2.11", | |
"rimraf": "2.2.4", | |
"mkdirp": "0.3.5", | |
"csv": "0.3.6", | |
"stripe": "2.4.0" | |
} |