Skip to content

Developers Guide

Rizvi Rab edited this page Feb 23, 2022 · 1 revision

VS Code

We strongly recommend installing VS Code for development. It provides seamless integration for docker and other tools that we can take advantage of for this project.

Please also install all of the following VS Code extentions:


Internationalization

Translating Routes

To add a Route

  1. To AppRoute.ts add the route to the enum with translation key for the route as the value.
  2. To both en.ts and fr.ts in src\i18n\lang, use the earlier translation key to add the route URL.
  3. In App.tsx, add a Route component with the path being a enum value of AppRoute (e.g. path={AppRoute.foo})
Clone this wiki locally