dummy commit to release branch
This project was bootstrapped with Create React App.
ShapeShift's OSS 2nd generation Web application. (Under Development)
- Architecture
- File Structure
- Folder Structure
- Globally Shared Code
- State Management
- Styles
- Testing
- Conventional Commits
On Linux and MacOS it works out of the box following the steps.
-
Clone the repo
-
(optional) Make sure you're using the right Node.js version.
nvm use
-
Install Dependencies:
# This is short for `yarn install`; be sure to use `yarn install --frozen-lockfile` instead if you're setting up a CI pipeline or trying to duplicate a historical build. yarn -
Copy
sample.envto.env, and configure it according to the .env section below.cp sample.env .env
The .env file contains environment variables that the program needs to function properly.
-
REACT_APP_PORTIS_DAPP_IDAllows you to connect a Portis wallet. Without this the program will hang after choosing Portis and clicking the "Pair" button. Portis Dapp IDs aren't secret, but they are domain-specific.
-
REACT_APP_ETHEREUM_NODE_URLNeeded for certain Defi integrations such as Yearn; the app will malfunction when connecting a wallet without it.
Any Ethereum node should do, but you can get your own node URL for testing by doing the following:
-
Set up a free account
-
Make a new project
Your key should use "JSON-RPC over HTTPS" and look like this:
https://mainnet.infura.io/v3/<your project id>
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 devLaunches the test runner in the interactive watch mode.
See the section
about
running tests
for more information.
It also creates a html page you can interact with at the root level of the project in /coverage.
yarn testStarts Cypress E2E testing with GUI.
yarn test:cypress
Or run Cypress headless
test:cypress:headless
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 buildRuns the component documentation.
Open
http://localhost:6006 to view it in the browser.
yarn storybookIf you're developing locally in this web repository, and need to make changes affecting packages in lib
or unchained (backend), use the following steps to link packages locally for developing.
If your changes only touch web these steps are not necessary.
Initial, one-off setup:
- Clone the
librepo,cdinto it, and runyarn build - From
lib, runyarn link - Clone
unchained,cdinto it, and runyarn build - From
unchained,cd packages/clientandyarn link, then do the same frompackages/parser
When working in web, and using local changes in lib or unchained:
- Run
yarn link-packagesinwebto use local versions oflibandunchained- now yourweb's chain-adapters have a symlink to yourlib's. yarn show-linked-packageswill show what's currently linked- Once you're done developing locally, run
yarn unlink-packagesto use published upstream versions
- Create a pull request on GitHub. (You can do this at
https://github.com/<username>/<fork name>/pull/new/<branch name>.) - Ensure you've followed the guidelines in CONTRIBUTING.md; in particular, make sure that the title of your PR conforms to the Conventional Commits format.
- Post a link to your new pull request in
#engineering-prsin the Discord - (optional) Return to the
developbranch to get ready to start another task.
The script ./scripts/release.sh helps to automate the release process.
yarn create-release v1.1.1
or
./scripts/release.sh release v1.1.1
This creates a releases/v1.1.1 branch based on origin/develop and pushes it to origin
yarn merge-release v1.1.1
or
./scripts/release.sh main v1.1.1
This does a checkout of origin/releases/v1.1.1 then merges that to main. After a confirmation prompt, it pushes that to origin/main.