Welcome!
31 |32 | This is Tauri shell. The content you are seeing is coming from embedded 33 | Svelte app. 34 |
35 |36 |
For styling Tailwind CSS is configured.
37 |├── src-tauri
├── build.rs
├── icons
│ ├── 32x32.png
│ ├── icon.icns
│ ├── icon.ico
│ ├── icon.png
│ ├── 128x128.png
│ ├── 128x128@2x.png
│ ├── StoreLogo.png
│ ├── Square30x30Logo.png
│ ├── Square44x44Logo.png
│ ├── Square71x71Logo.png
│ ├── Square89x89Logo.png
│ ├── Square107x107Logo.png
│ ├── Square142x142Logo.png
│ ├── Square150x150Logo.png
│ ├── Square284x284Logo.png
│ └── Square310x310Logo.png
├── .gitignore
├── Cargo.toml
├── tauri.conf.json
├── src
│ └── main.rs
└── Cargo.lock
├── public
├── icon.png
└── favicon.ico
├── screenshot.png
├── src
├── vite-env.d.ts
├── main.ts
└── App.svelte
├── postcss.config.cjs
├── tsconfig.node.json
├── vite.config.ts
├── tailwind.config.cjs
├── svelte.config.js
├── index.html
├── README.md
├── tsconfig.json
├── package.json
├── .gitignore
└── yarn.lock
/src-tauri/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | tauri_build::build()
3 | }
4 |
--------------------------------------------------------------------------------
/public/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spy16/taurishell/HEAD/public/icon.png
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spy16/taurishell/HEAD/screenshot.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spy16/taurishell/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
32 | This is Tauri shell. The content you are seeing is coming from embedded 33 | Svelte app. 34 |
35 |For styling Tailwind CSS is configured.
37 |