Versions Compared

Key

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

To be able to deploy the samples available on Identity Server, you need to download it onto your machine. 

Follow the instructions below to download a sample the samples from GitHub.

  1. Create a folder

    in

    on your local machine and navigate to it using your command line.
    Run the following commands.

    Code Block
    languagebash
    mkdir is-samples
    cd is-samples/
    git init
    git remote add -f origin https://github.com/wso2/product-is.git
    Code Block
    languagebash
    git config core.sparseCheckout true
  2. List Navigate into the .git/info/ directory and list out the folders/files you want to check out in .git/info/sparse-checkout using the echo command below. Lastly, run the git pull command to using the echo command.  

    Code Block
    cd .git
    cd info
    echo "modules/samples/" >> sparse-checkout
  3. Checkout the v5.1.0 tag to update the empty repository with the remote one. 

    Code Block
    languagebash
    echo "modules/samples/" >> sparse-checkout
    git pull origin master
    You will find the directory downloaded onto your local folder. 
    git checkout -b v5.1.0 v5.1.0 

    Access the samples by navigating to the <is-samples>/modules /samples directory.