br0x / investor_ui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list

From the scratch:

yarn create vite <project_name> --template react-ts
In the project root folder:
yarn init
yarn add @ton/ton @ton/core @ton/crypto
yarn add @orbs-network/ton-access
yarn add vite-plugin-node-polyfills
yarn add @tonconnect/ui-react
yarn dev

... do some debug and testing ...

git init
git add .
git commit -m "initial commit"
git remote add origin git@github.com:br0x/investor_ui.git
git push -u origin master

yarn build
mkdir .github/workflows

Prepare deploy.yml

In github repo: Settings->Actions(General)-> set "Workflow permissions" as rw (Save)

git commit -m "Workflow"
git push -u origin master

In github repo: Settings->Pages-> Branch gh-pages (Save)

About


Languages

Language:TypeScript 95.5%Language:CSS 3.2%Language:JavaScript 0.7%Language:HTML 0.6%