You've already forked AstralRinth
forked from didirus/AstralRinth
* 0.8.5 fixes * Attempt to fix binary name * bump version + add nsis installmode * (temp) Use cargo version of tauri CLI * fix cli build * Fix build env var * Bump tauri version * remove old invalid installs * Fix old shortcuts + NSIS build
31 lines
1.0 KiB
Markdown
31 lines
1.0 KiB
Markdown
# 
|
|
|
|
## Modrinth App
|
|
|
|
The Modrinth App is a desktop application for managing your Minecraft mods. It is built with [Tauri](https://tauri.app/) and [Vue](https://vuejs.org/).
|
|
|
|
If you're not a developer and you've stumbled upon this repository, you can download the latest release of the app from the [Modrinth website](https://modrinth.com/app).
|
|
|
|
## Development
|
|
|
|
### Pre-requisites
|
|
|
|
Before you begin, ensure you have the following installed on your machine:
|
|
|
|
- [Node.js](https://nodejs.org/en/)
|
|
- [pnpm](https://pnpm.io/)
|
|
- [Rust](https://www.rust-lang.org/tools/install)
|
|
- [Tauri](https://v2.tauri.app/start/prerequisites/)
|
|
|
|
### Setup
|
|
|
|
Follow these steps to set up your development environment:
|
|
|
|
```bash
|
|
cargo install tauri-cli --git https://github.com/modrinth/tauri.git --rev 5e2942876c2266594ed1db516c1d9975c873c36a
|
|
pnpm install
|
|
pnpm app:dev
|
|
```
|
|
|
|
You should now have a development build of the app running with hot-reloading enabled. Any changes you make to the code will automatically refresh the app.
|