06
- 6.1 Script a build
- Learning Objectives
- Create a build script
6.1 Script a build
Learning Objectives
By the end of this lesson you will be able to:
- Script a build that packages software so that it can be deployed.
Create a build script
- From your AWSCLI instance go to sample_app, open some build scripts.
- You can also find these files by going to https://github.com/stelligent/sample_app/blob/master/Rakefile and https://github.com/stelligent/sample_app/blob/master/lib/tasks/sample_data.rake.
- Make a modification to the contents of the file and save it.
Add the file in Git
“` $ git add .
“`
Commit the file to Git
“` $ git commit -m “Modified deployment script”
“`
Push it to the Git master.
“` $ git push
“`