This is a simple Farcaster V2 Frame built with React + Vite that can be hosted on IPFS and Base through Orbiter.
Clone the repo and install dependencies
git clone https://github.com/orbiterhost/v2frame
cd v2frame
npm installMake a build of the site to initially deploy
npm run buildMake an account on Orbiter and upload the dist folder as a new site, or use the orbiter-cli to programmatically create the site.
npm i -g orbiter-cli
orbiter login -p google # or github
orbiter create -d <choose a name> ./distTake note of the full domain of your new website!
Run the development server. If you plan to test inside the Frame Developer Tools be sure to tunnel through a service like Ngrok or Tailscale
npm run devFollow the tutorial to see steps on updating the Frame Manifest and Embed Tag
When completed make a new build of the site using npm run build and update your Orbiter site on the app or with the CLI:
orbiter update -d <your name> ./distFeel free to reach out if you have any questions!
