Go to Replit.com and clone the BootcampStarter
Whenever you create a new shell make sure you install the Flow CLI on it using this command in the shell
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"Begin by installing Node.js, which is a runtime environment for executing JavaScript outside a web browser. Npm is Node.js's package manager (It comes with Node and doesn't require any additional install), necessary for managing project dependencies. Download Node.js from their official website, which includes npm.
You can then create a new project like so:
npm create vite@latest my-dapp -- --template react
cd my-dapp
npm installInstall Flow JavaScript SDK: The Flow JS SDK is a collection of packages that allow you to interact with the Flow blockchain from your React app. Install it using npm:
npm install @onflow/fcl @onflow/typesSet up Chakra UI: Chakra UI is a simple, modular, and accessible component library that gives you the building blocks to build your React applications. Install Chakra UI by running:
npm install @chakra-ui/react @emotion/react @emotion/styled framer-motionUse can use the following command to start your local sever and see your app
npm run dev