Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fucksophie committed May 31, 2023
0 parents commit dec2938
Show file tree
Hide file tree
Showing 51 changed files with 9,303 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
src-tauri/target
node_modules
src-tauri/gen
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
}
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# musicplayer2-tauri

An semi-complciated music player written in React and Tailwind, using Tauri for cross-platform.

Supports:
1. Full LastFM compatability
2. **ONLY** Subsonic is supported. Local file support might come eventually, but don't count on it.
3. Most of Subsonic API.


## To build
Just run `npm i`, then `npm run dev`. You must have rust & cargo installed, webkitGTK and whatnot else.
Check the [tauri V2 docs](https://next--tauri.netlify.app/next/guides/building/) for more information on building.
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
</head>
<body>
<div id="root" class="overflow-hidden h-screen"></div>
<script>
if(localStorage.dark == 'dark') document.getElementById("root").className += " dark";
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit dec2938

Please sign in to comment.