https://github.com/thisdot/cloudinary-svelte
https://github.com/thisdot/cloudinary-svelte
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/thisdot/cloudinary-svelte
- Owner: thisdot
- Created: 2023-12-01T18:51:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-20T05:28:47.000Z (over 2 years ago)
- Last Synced: 2025-01-22T07:19:22.777Z (over 1 year ago)
- Language: Svelte
- Size: 7.19 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cloudinary & Sveltekit Demo
## Setup
1. Checkout the repo using your favorite GIT GUI or with
```sh
git clone git@github.com:thisdot/cloudinary-svelte.git
```
2. Install [Node.js](https://nodejs.org/en) >= 18. You can use an [installer](https://nodejs.org/en/download) or [Node Version Manager (NVM)](https://github.com/nvm-sh/nvm).
3. Install [pnpm](https://pnpm.io/) by running
```sh
npm install -g pnpm
```
4. Install the dependencies with
```sh
pnpm i
```
## Serving the app
Once you've installed the dependencies with `pnpm i` you can start the development server with
```sh
pnpm dev
```
or, if you want to automatically open a new browser tab, with
```sh
pnpm dev --open
```
## Building
To create a production version of the app:
```sh
pnpm build
```
You can preview the production build with `pnpm preview`.
> To deploy the app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.