Skip to main content

10-09-2019_Week3-Wednesday

Creating a WebAPP of Movies to show Actors and movies

  • Home Page
    • Tabs
      • Movies
      • Actors.
    • Buttons
      • Add movie > movie submit Form
      • Add actor > Actor submit Form

  • Databases/Submit Forms
    • Movies
      • Name
      • Year
      • Genere
      • Actors
      • Description
      • Image
    • Actors
      • Name
        • fname
        • last name 
      • Date of birth 
      • Description 

Comments

Popular posts from this blog

git

git is a useful platform for software project management where it gives you speed and efficiency when handling larger or smaller projects. git keeps track of your workflow and editing ,branching , merging and debugging the code is granted to different users. git config git config –global user.name “[name]” git config –global user.email “[email address]” git init  initiates git git clone clones git project to the current directory git add adding files to the staging area. git commit git commit -m “[ Type in the commit message]” records the files in the staging area permanently in the history git diff shows the files differences which are not yet staged git diff –staged This command shows the differences between the files in the staging area and the latest version present. git diff [first branch] [second branch] git commit -a This command commits any files you’ve added with the git add command and also commits any files you’ve changed since ...

Releases of a project

On 16th Friday the task was to release the changes made to the maven project we were working on so that the Delivery Assurance (DA) team can test it. The steps taken for the project release. Check the project for one last time for cleaning up. Check whether the colleagues changes are also present in the development branch.  After checking confirm the changes are committed to the development branch . Checkout to a new branch tag. eg:                    git checkout -b S12-t realease                   git push --set-upstream origin S12-release                     If all are set we are ready to release. Enter the following command mvn release:prepare -Darguments="-DskipTests" - Dresume=false; -Dresume=false : this means the committed changes will not be pushed if any network error occurs while releasing. Th...