{"id":17482817,"url":"https://github.com/creationix/wheaty","last_synced_at":"2025-04-10T02:43:58.462Z","repository":{"id":18901615,"uuid":"22119908","full_name":"creationix/wheaty","owner":"creationix","description":"JS-Git based application hosting platform","archived":false,"fork":false,"pushed_at":"2015-12-30T02:37:45.000Z","size":55,"stargazers_count":45,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-24T04:14:22.202Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/creationix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-22T20:41:13.000Z","updated_at":"2023-09-08T16:49:14.000Z","dependencies_parsed_at":"2022-07-16T17:00:33.345Z","dependency_job_id":null,"html_url":"https://github.com/creationix/wheaty","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Fwheaty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Fwheaty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Fwheaty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Fwheaty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/creationix","download_url":"https://codeload.github.com/creationix/wheaty/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248145530,"owners_count":21055149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-18T23:45:24.206Z","updated_at":"2025-04-10T02:43:58.435Z","avatar_url":"https://github.com/creationix.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Wheaty\n======\n\nJS-Git based application hosting platform\n\n## Development Usage\n\nThe easiest way to use this is with the `wheaty` CLI tool.  To install this, simply do:\n\n```sh\n\u003e npm install -g wheaty\n```\n\nThen when you want to test a site, just launch it by git url or path to local bare git repo.\n\n(Hint, the [tedit chrome app](https://chrome.google.com/webstore/detail/tedit-development-environ/ooekdijbnbbjdfjocaiflnjgoohnblgf) can edit bare repos on the local hard-disk)\n\n```sh\n\u003e wheaty git://github.com/creationix/creationix.com.git\n```\n\nThen open your browser to \u003chttp://localhost:8080/\u003e to see the site.\n\nYou override the port with the `PORT` environment variable.\nThe git branch can be changed with an extra argument.\n\n```sh\n\u003e wheaty git://github.com/creationix/blog.git refs/tags/current\n```\n\n## Production Usage\n\nThe `wheaty-group` tool can be used to create an instant git based PaaS.  Most the\ncreationix.com family of sites are running using this on a Rackspace server.\n\nMy production configs were at the time of writing are:\n\n```js\nvar pathJoin = require('path').join;\nvar jsRuntime = require('wheaty-js-runtime');\nmodule.exports = {\n  port: 8002,\n  user: \"tim\",\n  group: \"tim\",\n  cacheDir: pathJoin(__dirname, \"../git\"),\n  sites: {\n    \"luvit.io\": {\n      url: \"git@github.com:luvit/luvit.io.git\",\n      runtimes: { js: jsRuntime },\n    },\n    \"tedit.creationix.com\": {\n      url: \"git@github.com:creationix/tedit.git\",\n      root: \"build/web\",\n      runtimes: { js: jsRuntime },\n      ssl: true,\n    },\n    \"creationix.com\": {\n      url: \"git@github.com:creationix/creationix.com\",\n      runtimes: { js: jsRuntime },\n      ssl: true,\n    },\n  }\n};\n```\n\nAnd my play sites are:\n\n```js\nvar pathJoin = require('path').join;\nvar jsRuntime = require('wheaty-js-runtime');\nmodule.exports = {\n  port: 8001,\n  user: \"tim\",\n  group: \"tim\",\n  cacheDir: pathJoin(__dirname, \"../git\"),\n  sites: {\n    \"dukluv.io\": {\n      url: \"git@github.com:creationix/dukluv.git\",\n      root: \"www\",\n      runtimes: { js: jsRuntime },\n    },\n    \"conquest.creationix.com\": {\n      url: \"https://github.com/creationix/conquest.git\",\n      runtimes: { js: jsRuntime },\n    },\n    \"exploder.creationix.com\": {\n      url: \"https://github.com/creationix/exploder.git\",\n      runtimes: { js: jsRuntime },\n    },\n    \"clone-test.creationix.com\": {\n      url: \"https://github.com/creationix/clone-test.git\",\n      runtimes: { js: jsRuntime },\n    },\n    \"creator.creationix.com\": {\n      url: \"https://github.com/creationix/creator.git\",\n      root: \"www\",\n      runtimes: { js: jsRuntime },\n    },\n    \"desktop.creationix.com\": {\n      url: \"https://github.com/creationix/tedit.git\",\n      ref: \"refs/heads/minimal\",\n      root: \"build/minimal\",\n      runtimes: { js: jsRuntime },\n    },\n  }\n};\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreationix%2Fwheaty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreationix%2Fwheaty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreationix%2Fwheaty/lists"}