Files
cinny-desktop/README.md
T

20 lines
622 B
Markdown
Raw Normal View History

2022-04-29 20:13:18 +05:30
# Cinny desktop
2022-05-03 21:20:25 +05:30
Dekstop app of Cinny made with Tauri. Cinny is a matrix client focusing primarily on simple, elegant and secure interface.
2022-05-16 21:43:50 +05:30
![Image](resources/screenshot2.png)
2022-04-29 20:13:18 +05:30
## Local development
2022-05-03 21:20:25 +05:30
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 20:13:18 +05:30
* `git clone --recursive https://github.com/cinnyapp/cinny-desktop.git`
* `cd cinny`
* `npm ci`
* `cd ..`
* `npm ci`
2022-05-03 21:20:25 +05:30
To build the app locally, run:
2022-04-29 20:13:18 +05:30
* `npm run tauri build`
To start local dev server, run:
2022-05-04 17:52:40 +05:30
* `npm run tauri dev`