yarn start
Runs the app in the development mode
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
yarn test
- no watching mode
yarn test:dev
- run tests in watch mode
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
unzip cypress/plugins/MetaMask/metamask-chrome-9.5.0.zip
unzip cypress/integration/ssv/cli/eth2.0-deposit-cli-master.zip
For the virtualenv users, you can create a new venv:
cd cypress/integration/ssv/cli/eth2.0-deposit-cli-master
pip3 install virtualenv
virtualenv .venv
source .venv/bin/activate
and install the dependencies:
python3 setup.py install
pip3 install -r requirements.txt
pip3 install pytest
Check that tests are passing before starting using deposit CLI for auto-generation of keystore files during running cypress:
cd cypress/integration/ssv/cli/eth2.0-deposit-cli-master
source .venv/bin/activate
python3 -m pytest .
yarn build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
yarn lint
Lint checks works on every change of source code.
Also, lint happens before developer tries to commit (husky package).
As said upper, on every commit attempt husky runs linter to check source code.
On every push attempt tests are running to check that changes are not break anything.
The ssv-api is licensed under the
GNU General Public License v3.0,
also included in our repository in the LICENSE
file.