Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Load changes inside the development environment

The changes will be updated through an update of the docker image. Please make sure you've setup the development env according to Setting Up Your Development Environment

Code Block
languagepowershell
git clone http://gerrit.onap.org/r/optf/has
<!- Make code changes here->
cd <path>/has/conductor
mvn clean install <!- Build the maven artifact with changes ->

Then create a new Dockerfile and build-dockers-debug.sh to build the new image

Code Block
languagepowershell
sudo <file-path>/build_docker.sh <path_to_artifact_zip> <path_to_Dockerfile>


Commiting the Code

git commit -am "Initial proj struct"
git review -s
git commit -as --amend
# scroll down 2 lines (above your Change-ID) insert "Issue-ID: {issue_id}"

...