Giter VIP home page Giter VIP logo

basepod's Introduction

BasePod

Installing

git clone https://github.com/comodinx/BasePod.git "MyPodName"
cd "MyPodName"
./Scripts/install.sh -n "MyPodName" -v "1.0.0"

Arguments

-n (Required)

Pod name.

./Scripts/install.sh -n "MyPodName"
-v (Optional)

Initial version of the pod. Default value is "1.0.0"

./Scripts/install.sh -v "0.1.0"

Deploying

# Specific version number
./Scripts/deploy.sh -v "1.0.1"

# Push and tagging with default branch "master" in GIT and deploy
./Scripts/deploy.sh -v "1.0.1" -c "Comment for your commit in git"

# Push and tagging with default branch "master" in GIT and deploy
./Scripts/deploy.sh -v "1.0.1" -c "Comment for your commit in git" -b yourbranchname

Arguments

-v (Required)

Version for deploy.

./Scripts/deploy.sh -v "1.0.1"
-c (Optional)

Comment for commit and tagging in GIT repository.

./Scripts/deploy.sh -v "2.0.0" -c "Release 2.0.0"

# Equivalent to

git checkout master

git add --all
git commit -m "Release 2.0.0"
git push origin master

git tag "2.0.0" -m "Release 2.0.0" -f
git push origin --tags -f

./Scripts/deploy.sh -v "2.0.0"
-b (Optional)

Branch (existing or not) for commit and tagging in GIT repository.

./Scripts/deploy.sh -v "2.0.0" -c "Release 2.0.0" -b mynewbranch

# Equivalent to

git checkout mynewbranch

git add --all
git commit -m "Release 2.0.0"
git push origin mynewbranch

git tag "2.0.0" -m "Release 2.0.0" -f
git push origin --tags -f

./Scripts/deploy.sh -v "2.0.0"

Directories

Root
  |
  |-> Demo. Containt source code for your examples
  |
  |-> Scripts. Containt utilities for install and deploy
  |
  |-> Sources. Source code of the your pod

basepod's People

Contributors

nmolina-umewin avatar

Stargazers

Andres Ciaño avatar

Watchers

James Cloos avatar Milo Molina avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.