Skip to content

Instantly share code, notes, and snippets.

@rena2019
Last active October 7, 2021 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rena2019/09460769bb51f0ebbeeb925e8c58857e to your computer and use it in GitHub Desktop.
Save rena2019/09460769bb51f0ebbeeb925e8c58857e to your computer and use it in GitHub Desktop.
pydentity.sh
#!/bin/bash
sudo apt update
sudo apt install -y docker.io
# docker 1.2x is required
sudo curl -L https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
git clone https://github.com/wip-abramson/aries-jupyter-playground.git
cd aries-jupyter-playground
wget https://github.com/openshift/source-to-image/releases/download/v1.3.1/source-to-image-v1.3.1-a5a77147-linux-amd64.tar.gz
tar -xvf source-to-image-v1.3.1-a5a77147-linux-amd64.tar.gz
PATH=$(pwd):$PATH
cp ./playground/issuer/example.env ./playground/issuer/.env
cp ./playground/holder/example.env ./playground/holder/.env
cp ./playground/actor/dummy.env ./playground/actor/.env
cp ./playground/verifier/example.env ./playground/verifier/.env
# diplay notebook tokens
echo ./scripts/get_URLS.sh
#./manage.sh start
./manage.sh production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment