https://github.com/uthpalax/starter-kit
https://github.com/uthpalax/starter-kit
nhost starter-kit sveltekit
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/uthpalax/starter-kit
- Owner: uthpalax
- Created: 2021-04-29T09:20:50.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-27T12:55:50.000Z (about 5 years ago)
- Last Synced: 2025-04-03T20:43:15.991Z (over 1 year ago)
- Topics: nhost, starter-kit, sveltekit
- Language: Svelte
- Homepage: https://nhost-sveltekit-starter-kit.vercel.app/
- Size: 279 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nhost and SvelteKit starter kit
Learn more about [`nhost`](https://nhost.io/);
Learn more about [`svelte kit`](https://kit.svelte.dev/);
Watch the lesson series on youtube - DoingITeasyChannel [`here`](https://www.youtube.com/watch?v=u28pzv__KdU&list=PLRd0zhQj3CBkbHAlqi0e6cdLN4XHuQ8mh);
## Getting Started
Create a nhost project
```bash
# clone the project
git clone git@github.com:Uthpala/starter-kit.git
# Install dependencies
npm install
# Update .env file with your nhost project urls
VITE_NHOST_BASE_URL="your nhost project backend url"
```
## Initializing the nhost project
Once you have created a nhost project and installed nhost cli.
```bash
# Install nhost cli if you haven't already
npm install -g nhost
# Login to nhost using cli
nhost login
# REMOVE the nhost directory from the project
# Initialize the project
nhost init
# Select your project
# start the server and open the app in a new browser tab
npm run dev -- --open
```