DevBin64 is a collection devops scripts for maintaining code repositories and implementing CICD automation tasks
- Once
devbin64
has been deployed DevOps scripts will be available at<PROJECT>/bin
- Scripts can be invoded anytime as needed to fullfill routine and/or CICD DevOps tasks
- Bash: used by installer scripts.
- Curl, Tar and GZip: used to download and unpack packages
- Create and initialize empty GIT repository
mkdir NEW-PROJECT &&
cd NEW-PROJECT &&
git init
- (optional) Add remotes
git remote add origin ORIGIN_URL
- Download the latest version of the
dev-bootstrap
script to the new repository - Run the boostrap process
bash ./dev-bootstrap
-
(optional) Declare local variables and secrets in:
dot.local
dot.secrets
-
Review changes and complete first commit
git status
git add .
git commit -m 'dev: initialized repository'
# Push if using remotes
Help on implementing new features and maintaining the code base is welcomed.