https://github.com/joshnuss/tonys-apizza
POS for a pizza shop. Using SvelteKit, Prisma, and Stripe.
https://github.com/joshnuss/tonys-apizza
pos prisma stripe svelte sveltekit
Last synced: 3 months ago
JSON representation
POS for a pizza shop. Using SvelteKit, Prisma, and Stripe.
- Host: GitHub
- URL: https://github.com/joshnuss/tonys-apizza
- Owner: joshnuss
- Created: 2022-06-03T04:37:43.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-10T20:35:21.000Z (about 3 years ago)
- Last Synced: 2025-04-11T21:52:38.468Z (3 months ago)
- Topics: pos, prisma, stripe, svelte, sveltekit
- Language: Svelte
- Homepage:
- Size: 116 KB
- Stars: 19
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tony's Apizza
Example POS for a pizza shop. Built using [Stripe Terminal](https://stripe.com/terminal), [SvelteKit](https://kit.svelte.dev) and [Prisma](https://prisma.io).
## Try it out
[](https://gitpod.io/#https://github.com/joshnuss/tonys-apizza)
## Screenshot

## Features
- Contactless and dippable payments using [Stripe Terminal](https://stripe.com/terminal).
- Responsive keypad using CSS grid.
- Quick add buttons for purchasing common products.
- Basic tax computation for taxable products.
- Order and product data using postgres.## Setup
First, install dependencies:
```bash
pnpm install
```Create a `.env.development` file, and set up you Stripe private key:
```bash
cp .env.example .env.development
```Create the Postgres database:
```bash
pnpm db:create
```Set up the database schema:
```bash
pnpm db:push
```Load the fake product data:
```bash
pnpm db:seed
```## Create a simulated reader
To test card payments in dev mode, Stripe provides simulated readers.
To create a simulated reader, first create a location. This tells stripe where the terminal will be used:
```bash
> stripe terminal locations create --display-name=store1 \
-d "address[line1]=123 Main St." \
-d "address[city]=New Haven" \
-d "address[state]=CT" \
-d "address[country]=US" \
-d "address[postal_code]=10000"
{
"id": "tml_abcd1234",
...
}
```Then, create a simulated reader at that location:
```bash
> stripe terminal readers create --location=tml_abcd1234 \
--registration-code=simulated-wpe
{
"id": "tmr_abcd1234",
...
}
```Copy the ID's for the location and reader (they start with `tml_` & `tmr_`) and paste them into the `.env.development` under the keys `STRIPE_LOCATION_ID` & `STRIPE_TERMINAL_ID`.
## Development
Run the dev server:
```bash
pnpm dev
```Forward all Stripe events to the local webhook handler:
```bash
stripe listen --forward-to localhost:3000/stripe/events
```If you'd like to inspect data, open Prisma Studio and visit http://localhost:5555
```bash
pnpm db:studio
```## Caveats
In the real world, you might want to add a few more things:
- Authentication of cashiers
- Support for multiple readers and stations
- Support for tipping
- Support for cash and cash drawers
- Receipt printing and integration with thermal printer
- A barcode scanner
- Ability to issue a refund## License
MIT