Versions Compared

Key

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

...

  • Make a directory for MUSIC logs. The logs will be placed here after MUSIC starts

    Code Block
    languagebash
    themeMidnight
    titlemusic.properties
    mkdir /opt/app/music/logs
  • Build the MUSIC.war and place in tomcat webapps dir.

  • Download MUSIC from the Music Gerrit into your music folder (/opt/app/music/)

    Code Block
    languagebash
    themeMidnight
    cd /opt/app/music/
    git clone https://gerrit.onap.org/r/music
  • Build music using maven

    Code Block
    languagebash
    themeMidnight
    cd music
    # If you installed settings.xml in your ./m2 folder
    mvn clean package
    
  • If the build is successful, you will find the MUSIC.war in the ./target folder. Copy this to your tomcat's webapp folder

    Code Block
    languagebash
    themeMidnight
    cp target/MUSIC.WAR $TOMCAT_HOME/webapps
    
  • Start tomcat and you should now have MUSIC running.

  • There is a folder called postman that contains a postman collection for testing with postman.


...