https://github.com/devlinduldulao/tauri-app
conference app demo
https://github.com/devlinduldulao/tauri-app
Last synced: 14 days ago
JSON representation
conference app demo
- Host: GitHub
- URL: https://github.com/devlinduldulao/tauri-app
- Owner: devlinduldulao
- Created: 2024-12-06T09:27:29.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-02-10T18:39:27.000Z (4 months ago)
- Last Synced: 2026-05-01T19:07:36.495Z (about 2 months ago)
- Language: Kotlin
- Homepage: https://v0-tauri-v2-app.vercel.app
- Size: 990 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tauri + React + Typescript
This template should help get you started developing with Tauri, React and Typescript in Vite.
## Recommended IDE Setup
- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
## Steps to create and run a new project on ios and android
create a new project using the following command
```bash
npm create tauri-app@latest
npm run dev
npx tauri android init
npx tauri android dev
npx tauri ios init
npx tauri ios dev 'iPhone 17'
```
NOTE: setup signing certificate in xcode before running the below command
```bash
npx tauri ios dev --host
```
### Building for publishing
```bash
npx tauri ios build
npx tauri android build
```