Skip to content

Latest commit

 

History

History
79 lines (45 loc) · 1.85 KB

File metadata and controls

79 lines (45 loc) · 1.85 KB

Tauri SvelteKit Skeleton Template

image

This repository contains a starter template for building Tauri apps using SvelteKit that powered by Skeleton UI library with Tailwind CSS.

How to use this template

To use this template, run the following command:

npx degit cogscides/tauri-sveltekit-skeleton-template/example <target-directory>

This will clone the template repository and copy the files in the example directory to a new directory called <target-directory>.

Prerequisites

Before you can use this template, you will need to install the following dependencies:

Getting started

  1. Change into the target-directory:
cd <target-directory>

  1. Install the dependencies:
npm install

  1. Start the development server:
npm run tauri dev

or start dev server for browser

npm run dev

This will start the development server and open a new window. The app will automatically reload whenever you make changes to the source code.

Building for production

To build the app for production, run the following command:

npm run build

This will create a production build of the app in the build directory.

Further reading

Similar Repositories