bash:
# creates a local development making sure that you are using the correct node version
./make.sh dev
# run tests (by calling yarn script directly)
./make.sh test
docker:
# build a dev docker image locally
./make.sh build
# run the docker image on localhost
./make.sh run
# remove the running container
./make.sh rm
# run the latest docker image
docker run -p 3000:3000 testricochet/ricochet-frontend:latest
components
- contains react components. They can't have own state and business logic. Should be developed in storybook.containers
- containers use components, adding business logic for them.store
- all data and global business logic placed here. Separate folder for each reducer.utils
- common functions for project.hooks
- common business logic, that can be reused between containers.
See .env
file for configuration:
REACT_APP_API_GRATH=https://api.thegraph.com/subgraphs/name/superfluid-finance/superfluid-matic
REACT_APP_CHAIN_ID=137
-
fork the project
- fork the ricochet-frontend repo. -
create a branch
- please avoid using special characters in your branch name: https://docs.github.com/en/get-started/using-git/dealing-with-special-characters-in-branch-and-tag-names -
create a PR
- create a pull request on GitHub. -
test your changes
- Check github actions, once all checks are successful, a new environment will be created in a few minutes, please check comments to get the complete url. It will look something like this:a380c3be5e6284f4ca1dfc37a12b3033-851332533.eu-west-1.elb.amazonaws.com/your-branch-name
the environment will be destroyed once the PR is merged or closed.