Skip to content

Commit

Permalink
Initial commit of Ploopy headphones toolbox. Only the reboot bootload…
Browse files Browse the repository at this point in the history
…er command works.
  • Loading branch information
george-norton committed May 30, 2023
1 parent 9abff4a commit 9c36612
Show file tree
Hide file tree
Showing 41 changed files with 5,586 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri App</title>
</head>

<body>
<div id="tauri-app" class="fullscreen"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "tauri-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@quasar/extras": "^1.16.3",
"@quasar/vite-plugin": "^1.3.1",
"@tauri-apps/api": "^1.3.0",
"@vitejs/plugin-vue": "^4.2.1",
"chart.js": "^4.3.0",
"fft-js": "^0.0.12",
"quasar": "^2.11.10",
"sass": "^1.62.1",
"vue": "^3.2.47",
"vue-chartjs": "^5.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.3.0",
"typescript": "^4.8.2",
"vite": "^4.2.1"
}
}
4 changes: 4 additions & 0 deletions src-tauri/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Generated by Cargo
# will have compiled files and executables
/target/

Loading

0 comments on commit 9c36612

Please sign in to comment.