_
| | _____ _ _ _ __ _ __ ___ ____
| |/ / _ \ | | | '_ \| '__/ _ \_ /
| < __/ |_| | |_) | | | __// /
|_|\_\___|\__, | .__/|_| \___/___|
|___/|_|
π§ WIP
! This repository includes only frontend part of the application. You can visit production page under this URL. !
Application built with SvelteKit (currently in public beta), TypeScript and Vite. Deployed with Netlify.
Create your own .env file by running:
cp .env.dist .env
Update necessary variables. STRIPE_PUBLISHABLE_KEY
and STRIPE_SECRET_KEY
can be found in Stripe Dashboard. STRIPE_WEBHOOK_SECRET
is returned from running the command npm run listen
For local development run:
nvm use
npm install
npm start
With stripe-cli
you can listen for completion webhook:
npm run listen
Instead of going through the whole completion process run:
npm run trigger
To build the application run:
npm run build
To run the production build preview locally run:
npm run preview