Skip to content
/ react-template Public template

Customized react template with mui and language implementation

License

Notifications You must be signed in to change notification settings

MadMax2506/react-template

Repository files navigation

🛠️ Setup

Clone the repo and install dependencies:

git clone --depth 1 --branch main git@github.com:MadMax2506/react-template.git your-project-name
cd your-project-name
npm i -g pnpm vite
pnpm i
  • Adjust custom settings in index.html
  • Adjust app name in public\locales\de\common.json and public\locales\en\common.json
  • Replace <USER> and <PROJECT> in src\components\Todo\TodoLink.tsx with the related GitHub information

🔩 Starting Development

Start the app in the dev environment:

pnpm i
pnpm start:dev

💻 Starting Production

Start the app in the prod environment:

pnpm i
pnpm build
pnpm start:prod