To be able to deploy a sample of Identity Server, you need to download it onto your machine first.
Follow the instructions below to download a sample from GitHub.
- Create a folder in your local machine and navigate to it using your command line.
Run the following commands.
Code Block language bash mkdir is-samples cd is-samples/ git init git remote add -f origin https://github.com/wso2/product-is.git
Code Block language bash git config core.sparseCheckout true
List Navigate into the .
git/info/
directory and list out the folders/files you want to check out in.git/info/sparse-checkout
using theecho
command below. Lastly, using theecho
command below.Code Block language bash cd .git cd info echo "modules/samples/" >> sparse-checkout
Navigate out of
.git/info
directory and run thegit pull
command to update the empty repository with the remote one.Code Block echo "modules/samples/" >> sparse-checkout language bash cd .. cd .. git pull origin mastermaster
You will find the directory downloaded onto your local folder.