mirror of
https://github.com/Febbweiss/ProjectDeployer.git
synced 2026-03-05 06:35:42 +00:00
Refactoring: reorganize files between client and server + initiate deployment
This commit is contained in:
24
server/constants.js
Normal file
24
server/constants.js
Normal file
@@ -0,0 +1,24 @@
|
||||
var DEPLOYMENT_FOLDER = 'deployment',
|
||||
|
||||
SCRIPTS = {
|
||||
CREATE : [
|
||||
{
|
||||
cmd: 'mkdir %CWD%',
|
||||
options : {
|
||||
cwd: '%ROOT_CWD%'
|
||||
}
|
||||
},
|
||||
{
|
||||
cmd: 'cd %CWD%',
|
||||
options : {
|
||||
cwd: '%ROOT_CWD%'
|
||||
}
|
||||
},
|
||||
{
|
||||
cmd: 'git clone %GIT% .',
|
||||
options : {
|
||||
cwd: '%ROOT_CWD%/%CWD%'
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user