Skip to content

Instantly share code, notes, and snippets.

@creationix
Last active August 29, 2015 14:04
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 creationix/f5484c654dc0a7a14338 to your computer and use it in GitHub Desktop.
Save creationix/f5484c654dc0a7a14338 to your computer and use it in GitHub Desktop.
Wheaty configs
var pathJoin = require('path').join;
var jsRuntime = require('wheaty-js-runtime');
module.exports = {
port: 8002,
user: "tim",
group: "tim",
cacheDir: pathJoin(__dirname, "../git"),
sites: {
"luvit.io": {
url: "git@github.com:luvit/luvit.io.git",
runtimes: { js: jsRuntime },
},
"tedit.creationix.com": {
url: "git@github.com:creationix/tedit.git",
root: "build/web",
runtimes: { js: jsRuntime },
ssl: true,
},
"creationix.com": {
url: "git@github.com:creationix/creationix.com",
runtimes: { js: jsRuntime },
ssl: true,
},
}
};
var pathJoin = require('path').join;
var jsRuntime = require('wheaty-js-runtime');
module.exports = {
port: 8001,
user: "tim",
group: "tim",
cacheDir: pathJoin(__dirname, "../git"),
sites: {
"dukluv.io": {
url: "git@github.com:creationix/dukluv.git",
root: "www",
runtimes: { js: jsRuntime },
},
"conquest.creationix.com": {
url: "https://github.com/creationix/conquest.git",
runtimes: { js: jsRuntime },
},
"exploder.creationix.com": {
url: "https://github.com/creationix/exploder.git",
runtimes: { js: jsRuntime },
},
"clone-test.creationix.com": {
url: "https://github.com/creationix/clone-test.git",
runtimes: { js: jsRuntime },
},
"creator.creationix.com": {
url: "https://github.com/creationix/creator.git",
root: "www",
runtimes: { js: jsRuntime },
},
"desktop.creationix.com": {
url: "https://github.com/creationix/tedit.git",
ref: "refs/heads/minimal",
root: "build/minimal",
runtimes: { js: jsRuntime },
},
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment