Synthetixio / synthetix-pm

Private repo for project management of the americas team
0 stars 2 forks source link

Way to start the ops tool that is easy, and central to the whole team #163

Open eternauta1337 opened 3 years ago

eternauta1337 commented 3 years ago

function opsClear () { docker system prune cd ~ rm -rf optimism git clone https://github.com/ethereum-optimism/optimism.git } function opsBuild () { opsStop cd ~/optimism git fetch git checkout master git pull origin master git checkout 86708bb5758cd2b647b3ca2be698beb5aa3af81f yarn yarn build } function opsStart () { cd ~/optimism/ops export COMPOSE_DOCKER_CLI_BUILD=1 export DOCKER_BUILDKIT=1 docker-compose build --parallel docker-compose up } function opsStop () { cd ~/optimism/ops docker-compose down -v }

leomassazza commented 3 years ago

mine

leomassazza commented 3 years ago

Done at the PR: https://github.com/Synthetixio/synthetix/pull/1324