mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 05:27:03 +00:00
bake updated (now just provide a path of any type: ssh://, git://, etc) Reviewed by Francisco.
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
{
|
|
"sources" : [
|
|
{
|
|
"type" : "git",
|
|
"path" : "git://github.com/280north/cappuccino.git",
|
|
"parts" : [
|
|
{
|
|
"src" : "Objective-J",
|
|
"dst" : "Frameworks/Objective-J",
|
|
"build" : "ant -DBuild=BUILD_PATH",
|
|
"copyFrom" : "Release/Objective-J"
|
|
},
|
|
{
|
|
"src" : "Foundation",
|
|
"dst" : "Frameworks/Foundation",
|
|
"build" : "steam -c Release -b BUILD_PATH",
|
|
"copyFrom" : "Release/Foundation"
|
|
},
|
|
{
|
|
"src" : "AppKit",
|
|
"dst" : "Frameworks/AppKit",
|
|
"build" : "steam -c Release -b BUILD_PATH",
|
|
"copyFrom" : "Release/AppKit"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"type" : "git",
|
|
"server" : "ssh://git@git.myserver.com/home/git/myapp.git",
|
|
"parts" : [
|
|
{
|
|
"src" : "Editor/Server",
|
|
"dst" : "Server"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"deployments" : [
|
|
{ "host" : "deploy@myserver.com", "path" : "/var/www/mysite/public" }
|
|
],
|
|
"templateVars" : {
|
|
"APPLICATION_NAME" : "My Application",
|
|
"BACKGROUND_COLOR" : "black",
|
|
"TEXT_COLOR" : "black"
|
|
}
|
|
}
|