ShapeShift DAO Web Interface
This project was bootstrapped with Create React App.
ShapeShift's OSS 2nd generation Web application. (Under Development)
Table Of Contents
Helpful Docs
- Architecture
- File Structure
- Folder Structure
- Globally Shared Code
- State Management
- Styles
- Testing
- Conventional Commits
Resources
Requirements
- Node.js. Use a node version manager like
nvm
or check.nvmrc
for the version. - OpenJDK. Required for openapi-generator-cli to generate API clients from OpenAPI specs.
Debugging
Quick Start
If you are using Linux and macOS it works out of the box following these steps:
-
Clone the repo
On Windows, Windows Subsystem for Linux (WSL) is required. Make sure to store your clone of the repo on the WSL filesystem in order to avoid issues with line endings.
Please do not ask our Engineering team for further help with WSL.
-
Make sure you are using the right Node.js version. This can optionally be done using a version manager like
nvm
:nvm use
-
Install OpenJDK.
On MacOS if you have installed
openapi-generator-cli
, it will be installed automatically. -
Install Dependencies:
yarn
This is short for
yarn install
; be sure to useyarn install --immutable
instead if you're setting up a CI pipeline or trying to duplicate a historical build. -
Build Packages:
yarn build:packages
-
Run
yarn env dev
to generate a.env
file. -
Other recommended configurations:
To use the
.git-blame-ignore-revs
file to ignore specific commits, update the project's git configuration by running:git config --local blame.ignoreRevsFile .git-blame-ignore-revs
Commands
To run the app in the development mode:
yarn dev
It opens http://localhost:3000 to view it in the browser and the page will reload if you make edits.
You will also see any lint errors in the console.
To launch the test runner in interactive watch mode:
yarn test
See the section about running tests for more information.
It also creates an HTML page you can interact with at the root level of the project in
/coverage
.
To start Cypress E2E testing with GUI:
yarn test:cypress
or, to start it in headless mode:
yarn test:cypress:headless
To build the app for production in the /build
folder at the root level of the project:
yarn build:web
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.
Developer Onboarding
- 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-prs
in the Discord - (optional) Return to the
develop
branch to get ready to start another task.
Releases
The command yarn release
helps to automate the release process.
Run the command and follow the prompts.