https://github.com/notreeceharris/blackjack
https://github.com/notreeceharris/blackjack
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/notreeceharris/blackjack
- Owner: NotReeceHarris
- Created: 2025-07-23T12:09:38.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-23T15:54:15.000Z (11 months ago)
- Last Synced: 2025-09-17T13:55:15.190Z (9 months ago)
- Language: TypeScript
- Homepage: https://blackjack-lime-eta.vercel.app
- Size: 313 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
name: Postgres SvelteKit Starter
slug: postgres-sveltekit
description: Simple SvelteKit template that uses a Postgres database.
framework: Svelte
useCase: Starter
css: Tailwind
database: Postgres
deployUrl: https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fexamples%2Ftree%2Fmain%2Fstorage%2Fpostgres-sveltekit&project-name=postgres-sveltekit&repository-name=postgres-sveltekit&demo-title=Vercel%20Postgres%20Starter%sveltekit&demo-description=Simple%20Svelte.js%20template%20that%20uses%20Vercel%20Postgres%20as%20the%20database.&demo-url=https%3A%2F%2Fpostgres-sveltekit.vercel.app%2F&demo-image=https%3A%2F%2Fpostgres-starter.vercel.app%2Fopengraph-image.png&products=%5B%7B%22type%22%3A%22integration%22%2C%22group%22%3A%22postgres%22%7D%5D
demoUrl: https://postgres-sveltekit.vercel.app/
relatedTemplates:
- postgres-starter
- postgres-prisma
- postgres-kysely
---
# Postgres SvelteKit Starter
Simple SvelteKit template that uses a Postgres database.
## Demo
https://postgres-sveltekit.vercel.app/
## How to Use
You can choose from one of the following two methods to use this repository:
### One-Click Deploy
Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=vercel-examples)
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fexamples%2Ftree%2Fmain%2Fstorage%2Fpostgres-sveltekit&project-name=postgres-sveltekit&repository-name=postgres-sveltekit&demo-title=Vercel%20Postgres%20Next.js%Sveltekit&demo-description=Simple%20Next.js%20template%20that%20uses%20Vercel%20Postgres%20as%20the%20database.&demo-url=https%3A%2F%2Fpostgres-sveltekit.vercel.app%2F&demo-image=https%3A%2F%2Fpostgres-starter.vercel.app%2Fopengraph-image.png&products=%5B%7B%22type%22%3A%22integration%22%2C%22group%22%3A%22postgres%22%7D%5D)
### Clone and Deploy
Execute the following command to download the example into the `my-project` folder:
```bash
npx degit@latest https://github.com/vercel/examples/storage/postgres-sveltekit my-project
```
Once you've created the project and installed dependencies with `pnpm install`, copy the `.env.example` file in this directory to `.env.local` (which will be ignored by Git). Then open `.env.local` and set the environment variables to match the ones in your Vercel Storage Dashboard.
Alternatively, if you have setup a project already and you have installed the Vercel CLI, you can also pull the environment variables using the following command:
```bash
vercel env pull .env.local
```
Next, run SvelteKit in development mode:
```bash
pnpm dev
```
Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=vercel-examples) ([Documentation](https://vercel.com/docs/frameworks/sveltekit)).