Skip to content

Commit

Permalink
added bat file
Browse files Browse the repository at this point in the history
  • Loading branch information
afortener committed Sep 2, 2015
1 parent 8b021cc commit b441659
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions deploy.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export APP_NAME=environment
cf delete $APP_NAME -r -f
cf push $APP_NAME -m 2g -s windows2012R2 -b https://github.com/ryandotsmith/null-buildpack.git --no-start -p ./ViewEnvironment/
cf enable-diego $APP_NAME
cf start $APP_NAME
9 changes: 5 additions & 4 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cf delete environment -r -f
cf push environment -m 2g -s windows2012R2 -b https://github.com/ryandotsmith/null-buildpack.git --no-start -p ./ViewEnvironment/
cf enable-diego environment
cf start environment
APP_NAME=env
cf delete $APP_NAME -r -f
cf push $APP_NAME -m 2g -s windows2012R2 -b https://github.com/ryandotsmith/null-buildpack.git --no-start -p ./ViewEnvironment/
cf enable-diego $APP_NAME
cf start $APP_NAME

0 comments on commit b441659

Please sign in to comment.