replace git urls with https urls

This commit is contained in:
AJ ONeal 2017-08-02 19:06:02 -06:00
parent 79071b95c2
commit eed926098a
1 changed files with 6 additions and 6 deletions

View File

@ -135,7 +135,7 @@ You could also, of course, try installing from the repository directly
```bash
mkdir -p /srv/walnut/
git clone git@git.daplie.com:Daplie/walnut.js.git /srv/walnut/core
git clone https://git.daplie.com/Daplie/walnut.js.git /srv/walnut/core
pushd /srv/walnut/core
git checkout v1
popd
@ -188,7 +188,7 @@ For the APIs for that we`ll install the `issuer@oauth3.org` API package and enab
```
# API packaged for walnut
git clone git@git.daplie.com:OAuth3/org.oauth3.provider.git /srv/walnut/packages/rest/issuer@oauth3.org
git clone https://git.daplie.com/OAuth3/org.oauth3.provider.git /srv/walnut/packages/rest/issuer@oauth3.org
pushd /srv/walnut/packages/rest/issuer@oauth3.org/
git checkout v1.2
npm install
@ -207,7 +207,7 @@ For the user interface for that we'll install the `issuer@oauth3.org` site packa
```
# Frontend
git clone git@git.daplie.com:OAuth3/org.oauth3.git /srv/walnut/packages/pages/issuer@oauth3.org
git clone https://git.daplie.com/OAuth3/org.oauth3.git /srv/walnut/packages/pages/issuer@oauth3.org
pushd /srv/walnut/packages/pages/issuer@oauth3.org
bash ./install.sh
popd
@ -252,7 +252,7 @@ Install the 'hello@example.com' package
---------------------
```bash
git clone git@git.daplie.com:Daplie/com.example.hello.git /srv/walnut/packages/rest/hello@example.com
git clone https://git.daplie.com/Daplie/com.example.hello.git /srv/walnut/packages/rest/hello@example.com
echo "hello@example.com" >> /srv/walnut/packages/client-api-grants/provider.$my_domain
```
@ -280,10 +280,10 @@ Get the Seed App
```bash
pushd /srv/walnut/packages/pages/
git clone git@git.daplie.com:Daplie/seed_example.com.git --branch v1 seed@example.com
git clone https://git.daplie.com/Daplie/seed_example.com.git --branch v1 seed@example.com
pushd seed@example.com/
git clone git@git.daplie.com:OAuth3/oauth3.js.git --branch v1.1 assets/oauth3.org
git clone https://git.daplie.com/OAuth3/oauth3.js.git --branch v1.1 assets/oauth3.org
mkdir -p .well-known
ln -sf ../assets/oauth3.org/.well-known/oauth3 .well-known/oauth3