Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/furqanramzan/sveltekit-ecommerce
🛒 E-commerce project written in SvelteKit
https://github.com/furqanramzan/sveltekit-ecommerce
aws-s3 drizzle-orm flowbite nodejs sharp svelte sveltekit tailwindcss verceldeployment zod
Last synced: 12 days ago
JSON representation
🛒 E-commerce project written in SvelteKit
- Host: GitHub
- URL: https://github.com/furqanramzan/sveltekit-ecommerce
- Owner: furqanramzan
- Created: 2023-07-27T09:27:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-19T11:16:37.000Z (10 months ago)
- Last Synced: 2024-11-25T11:42:32.821Z (2 months ago)
- Topics: aws-s3, drizzle-orm, flowbite, nodejs, sharp, svelte, sveltekit, tailwindcss, verceldeployment, zod
- Language: TypeScript
- Homepage: https://sveltekit-ecommerce-furqanramzan.vercel.app/
- Size: 14.4 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SvelteKit E-commerce - [Live Demo](https://sveltekit-ecommerce-furqanramzan.vercel.app)
## Setup
### Install pnpm
Install pnpm globally using the following command, which is a performant node package manager.
```sh
npm install -g pnpm
```### Installing dependencies
Make sure to install dependencies using:
```sh
pnpm install
```Make a copy of the environment variables file.
```bash
cp .env.example .env
```## Developing
To start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
pnpm run build
```## Previewing
You can preview the production build with:
```sh
pnpm run preview
```## Type Checking
To validate the definitions of the types:
```bash
pnpm run typecheck
```## Linting
Run the following command to lint the application.
```bash
pnpm run lint
```## Deploying
To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
## License
SvelteKit E-commerce is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).