2022-04-29 14:43:18 +00:00
|
|
|
# Cinny desktop
|
2022-05-03 15:50:25 +00:00
|
|
|
Dekstop app of Cinny made with Tauri. Cinny is a matrix client focusing primarily on simple, elegant and secure interface.
|
2022-04-29 14:43:18 +00:00
|
|
|
|
|
|
|
## Local development
|
|
|
|
|
2022-05-03 15:50:25 +00:00
|
|
|
Firstly, to setup Rust, NodeJS and build tools follow [Tauri documentation](https://tauri.studio/docs/getting-started/prerequisites).
|
|
|
|
|
|
|
|
Now, to setup development locally run the following commands:
|
2022-04-29 14:43:18 +00:00
|
|
|
* `git clone --recursive https://github.com/cinnyapp/cinny-desktop.git`
|
|
|
|
* `cd cinny`
|
|
|
|
* `npm ci`
|
|
|
|
* `cd ..`
|
|
|
|
* `npm ci`
|
|
|
|
|
2022-05-03 15:50:25 +00:00
|
|
|
To build the app locally, run:
|
2022-04-29 14:43:18 +00:00
|
|
|
* `npm run tauri build`
|
|
|
|
|
|
|
|
To start local dev server, run:
|
2022-05-04 12:22:40 +00:00
|
|
|
* `npm run tauri dev`
|