File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88# dependencies
99/node_modules
10+ /data
1011
1112# IDEs and editors
1213/.idea
Original file line number Diff line number Diff line change 1- FROM python:3.7
1+ FROM python:3.8
22
33LABEL Name=backend Version=0.0.1 Author="Paul Lange"
44EXPOSE 4567
55
66WORKDIR /app
77ADD . /app
88
9+ RUN python3 -m pip install -U pip setuptools wheel
910RUN python3 -m pip install -r requirements.txt
1011RUN python3 setup.py develop
1112CMD ["python3" , "metrics_backend/metrics_cli.py" ]
Original file line number Diff line number Diff line change 1- Click == 8.0.1
1+ raiden @ git+https://github.com/raiden-network/raiden.git@arbitrum-v0.14.0#egg=raiden
22
3- web3 == 5.19.0
3+ Click
4+
5+ web3
46eth-utils
57
6- flask == 1.1.2
7- flask_restful == 0.3.8
8- flask-cors == 3.0.10
9- gevent == 21.1.2
10- requests == 2.25.1
11- cachetools == 4.2.2
8+ flask
9+ flask_restful
10+ flask-cors
11+ gevent
12+ requests
13+ cachetools
1214
13- raiden == 2.0.0rc0
14- raiden-contracts == 0.37.5
15+ raiden-contracts == 0.50.1
1516mypy-extensions
Original file line number Diff line number Diff line change @@ -111,6 +111,34 @@ services:
111111 - " traefik.enable=true"
112112 - " traefik.frontend.rule=Host:goerli.explorer.raiden.network; Path: /json"
113113
114+ frontend-rinkarby :
115+ build :
116+ context : ./frontend
117+ args :
118+ backend_url : https://rinkarby.explorer.raiden.network/json
119+ poll_interval : 10000
120+ etherscan_base_url : https://testnet.arbiscan.io/
121+ network_name : Rinkarby
122+ matomo_tracker_url : https://analytics.raiden.network/matomo.php
123+ matomo_site_id : 3
124+ matomo_script_url : https://analytics.raiden.network/matomo.js
125+ restart : always
126+ labels :
127+ - " traefik.enable=true"
128+ - " traefik.frontend.rule=Host:rinkarby.explorer.raiden.network"
129+
130+ backend-rinkarby :
131+ build :
132+ context : ./backend
133+ restart : always
134+ environment :
135+ - EXPLORER_ETH_RPC=https://rinkeby.arbitrum.io/rpc
136+ - EXPLORER_ENVIRONMENT=development
137+ - EXPLORER_REGISTRY_ADDRESS="0xb287797edfb3334f5edce76bdeb02b044260067d"
138+ labels :
139+ - " traefik.enable=true"
140+ - " traefik.frontend.rule=Host:rinkarby.explorer.raiden.network; Path: /json"
141+
114142 traefik :
115143 image : traefik:1.7
116144 restart : always
You can’t perform that action at this time.
0 commit comments