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

https://github.com/webmasterdevlin/tauri-svelte-bank-app


https://github.com/webmasterdevlin/tauri-svelte-bank-app

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# Bank desktop application

## Technologies
- Tauri for cross platform desktop application development
- Svelte-kit, a Svelte metaframework
- Vite for fast HMR
- TypeScript
- Tailwind CSS for CSS class utilities
- Prisma as ORM
- SQLite as the database
- Vitest for test runner

### Clone the app
```sh
git clone https://github.com/webmasterdevlin/tauri-app.git
```

### Install dependencies
```sh
npm install
```

### Run Prisma Studio
```sh
npx prisma studio
```

### Run the Tauri app
```sh
npm run tauri.dev
```

### Run unit tests
```sh
npm run test.unit
```