commit 735cf591a5fca5755cab50ef5df4fcb3b4173d66 Author: s0wlz (Matthias Puchstein) Date: Fri Feb 20 19:39:40 2026 +0100 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b43a731 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# dependency directories +node_modules/ + +# Optional npm and yarn cache directory +.npm/ +.yarn/ + +# Output of 'npm pack' +*.tgz + +# dotenv environment variables file +.env + +# .vscode workspace settings file +.vscode/settings.json +.vscode/launch.json +.vscode/tasks.json + +# npm, yarn and bun lock files +package-lock.json +yarn.lock +bun.lockb + +# rust compiled folders +target/ + +# test video for streaming example +streaming_example_test_video.mp4 + +# examples /gen directory +/examples/**/src-tauri/gen/ +/bench/**/src-tauri/gen/ + +# logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# runtime data +pids +*.pid +*.seed +*.pid.lock + +# miscellaneous +/.vs +.DS_Store +.Thumbs.db +*.sublime* +.idea +debug.log +TODO.md +.aider* diff --git a/README.md b/README.md new file mode 100644 index 0000000..b381dcf --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Tauri + Vanilla TS + +This template should help get you started developing with Tauri in vanilla HTML, CSS and Typescript. + +## 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)