An open API service indexing awesome lists of open source software.

https://github.com/zaxwebs/sk-supabase-tutorial

This repository contains the code created while following the Supabase tutorial on integrating user management into a SvelteKit application.
https://github.com/zaxwebs/sk-supabase-tutorial

Last synced: 16 days ago
JSON representation

This repository contains the code created while following the Supabase tutorial on integrating user management into a SvelteKit application.

Awesome Lists containing this project

README

          

# Supabase SvelteKit User Management Tutorial

This repository contains the code created while following the [Supabase tutorial](https://supabase.com/docs/guides/getting-started/tutorials/with-sveltekit) on integrating user management into a SvelteKit application. The tutorial guides you through setting up authentication and user management features using Supabase and SvelteKit.

## Getting Started

To run this project locally, follow these steps:

### Prerequisites

- Node.js and npm installed on your machine.

### Installation

1. Clone this repository to your local machine:

```bash
git clone https://github.com/zaxwebs/sk-supabase-tutorial.git
```

2. Navigate to the project directory:

```bash
cd sk-supabase-tutorial
```

3. Install dependencies:

```bash
npm install
```

4. Configure Supabase:

- Follow the steps mentioned in the tutorial to set up a Supabase project.
- Obtain your Supabase URL and API key.
- Place values in `src/.env` with your actual Supabase URL and API key.

### Running the Application

Once the setup is complete, you can run the application using:

```bash
npm run dev
```

This will start the development server.

## Additional Notes

This repository follows the main sections of the tutorial but does not include the bonus section. Feel free to extend or modify the codebase based on your requirements or continue with the bonus features as outlined in the tutorial.

## Resources

- [Tutorial: Getting Started with Supabase and SvelteKit](https://supabase.com/docs/guides/getting-started/tutorials/with-sveltekit)
- [Supabase Documentation](https://supabase.com/docs)
- [SvelteKit Documentation](https://kit.svelte.dev/docs)

## License

This project is licensed under the [MIT License](LICENSE).