Skip to content

lifinance/jumper.exchange

Repository files navigation

license Crowdin Follow on Twitter

Jumper.Exchange

This is the jumper.exchange repository that gets deployed to develop.jumper.exchange, staging.jumper.exchange and jumper.exchange.

Getting Started

In the root directory run the following commands to get started:

yarn

to install all dependencies, and choose one of these start commands to start the development vite server and to start building packages in watch mode.

yarn dev
yarn dev:local
yarn dev:staging
yarn dev:production

Please refer to the following descriptions of the dev serve scripts:

dev - starts the app using the backend develop stage
dev:local - starts the app using a locally running backend
dev:staging - starts the app using the backend staging stage
dev:production - starts the app using the backend production stage

Husky Scripts

In addition to these commands you should also run

yarn add husky

if you plan to commit to this repository to use all necessary husky hooks. If you have trouble running a script try modifying the permissions for the scripts with

chmod ug+x .husky/

to mark them as executables

lint-staged

small comment on the lint-staged config. The idea of invoking tsc --noEmit from bash instead of yarn comes from here: github issue It fixes some problems we had with lint-staged ignoring our tsconfig and not working properly.