add ganache fixes to nodejs and yarn. update requirements.yml, add two install methods for ganache, fixes to remix

This commit is contained in:
Bryan Black 2022-10-27 21:59:13 -07:00
parent 8077c51cf7
commit 6bfbc0a68a
8 changed files with 53 additions and 9 deletions

View file

@ -0,0 +1,8 @@
- name: Create ganache
community.docker.docker_container:
name: ganache
image: trufflesuite/ganache:v7.1.0
state: started
restart: true
ports:
- "127.0.0.1:8545:8545" # discuss if this should be bind all gitlab.com/reel/ziion-tools/-/issues/4

View file

@ -0,0 +1,7 @@
- name: Install ganache
community.general.npm:
name: ganache
version: '7.1.0'
path: /usr/local/ganache
global: true
state: present

View file

@ -0,0 +1,7 @@
---
#- import_tasks: install-via-npm.yml
# tags: install-via-npm
- import_tasks: install-via-docker.yml
tags: install-via-docker