wormhole/explorer
jschuldt 0e602ed91d Add explorer web app and web proto codegen
- update buf to latest to support ts-proto plugin

- add NodeJS dev dependency for web-proto codegen

Change-Id: I881f9da7461d5d4ff28a64304a2adc33037598d1
2021-06-02 16:05:16 +00:00
..
.storybook Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.vscode Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
__mocks__ Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
src Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
static Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
test-utils Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.babelrc Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.editorconfig Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.env.sample Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.eslintignore Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.eslintrc.js Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.gitignore Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.prettierignore Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.prettierrc Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
.svgo.yml Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
Dockerfile Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
README.md Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
gatsby-browser.js Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
gatsby-config.js Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
gatsby-node.js Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
gatsby-ssr.js Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
jest.config.js Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
jsconfig.json Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
package-lock.json Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
package.json Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00
tsconfig.json Add explorer web app and web proto codegen 2021-06-02 16:05:16 +00:00

README.md

wormhole explorer

A web app built with:

Notable files

Repo setup

Installing dependencies with npm:

npm install

Create a .env file for your development environment, from the .env.sample:

cp .env.sample .env.development

Developing

Start the development server with the npm script:

npm run dev

Then open the web app in your browser at http://localhost:8000

Debugging

NodeJs debugging with VSCode

You can debug the Gatsby dev server or build process using VSCode's debbuger. Checkout .vscode/launch.json to see the NodeJS debugging options.

These debugger configs will let you set breakpoints in the Gatsby node programs (./gatsby-config.js, ./gatsby-node.js) to debug webpack, Gatsby plugins, etc.

Browser debugging with VSCode

With the Debugger for Chrome extension installed, you can inspect the web app and set broswer breakpoints from VSCode. With the dev server (npm run dev) running, select & run Debug in Chrome from the debugger pane.

Storybook component rendering

Storybook can render components with sytles and locales, for UI component development.

Run Storybook with:

npm run storybook

See ./src/components/Button/button.stories.tsx

eslint linting & formatting

Check linting:

npm run lint

Fix linting errors:

npm run format

Ant Design Theming

Ant Design default less variables can be overridden in ./src/AntdTheme.js, which is used in ./gatsby-config.js#L51.

Programmatic Translations

Translations can be made for the supported languages (./src/utils/i18n/supportedLanguages.js). The English language definition file (./src/locales/en.json) will be read and used as the source, using either DeepL or Google Translate to supply the translations.

Translating with DeepL

Pass your DeepL Pro api key to the npm script:

npm run translate:deepl -- your-DeepL-Pro-api-key-here

Translating with Google Translate

With your Service Account credentials saved to a file locally, pass the path to the .json file to the npm script:

npm run translate:google -- ./your-GCP-service-account.json