Frontend for Peppy. Built with SvelteKit, Tailwind and TypeScript.
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --openBy default, it will use the hosted backend for API calls. Create a .env file with the following to customize this:
VITE_API_BASE_URL=http://localhost:4000Currently, the frontend is hosted on vercel. Use this command to build the app for vercel:
npm run buildYou can preview the built app with npm run preview.