Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 799 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 799 Bytes

Peppy UI

Frontend for Peppy. Built with SvelteKit, Tailwind and TypeScript.

Developing

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 -- --open

By 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:4000

Building

Currently, the frontend is hosted on vercel. Use this command to build the app for vercel:

npm run build

You can preview the built app with npm run preview.