You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ Museeks is built upon:
83
83
So you will need to install the following dependencies:
84
84
85
85
-[Tauri requirements](https://v2.tauri.app/start/prerequisites/) for `rust`
86
-
-[`Bun.sh`](https://bun.sh)
86
+
-[`Node.js`](https://nodejs.org)
87
87
88
88
Then you can:
89
89
@@ -93,15 +93,15 @@ Then you can:
93
93
94
94
### Development Mode
95
95
96
-
-`bun ci`
97
-
-`bun run tauri dev`
96
+
-`npm ci`
97
+
-`npm run tauri dev`
98
98
99
99
This will launch Museeks in dev mode. Hot reload will work out-of-the-box, so when you update a `.js` file, the UI will automatically update. When you edit a `.rs` file, Museeks will automatically rebuild.
100
100
101
101
### Package Binaries
102
102
103
-
-`bun ci`
104
-
-`bun run tauri build`
103
+
-`npm ci`
104
+
-`npm run tauri build`
105
105
106
106
Tauri does not support cross-platform binaries, so the command will only generate binaries for your current platform (macOS, Linux, or Windows).
107
107
@@ -110,7 +110,7 @@ Tauri does not support cross-platform binaries, so the command will only generat
110
110
- Follow the steps from the "Setup" and "Development Mode" sections
111
111
- Go to `src/translations/languages.ts`
112
112
- Add your language information to the list
113
-
- Run `bun run gen:translations`
113
+
- Run `npm run gen:translations`
114
114
- This will create a new file `<your_language_code>.po` in the same folder
115
115
- Fill in the translations from the created `.po` file
0 commit comments