n-link/README.md

33 lines
878 B
Markdown
Raw Normal View History

2020-09-27 18:45:54 +00:00
# N-Link
Free, cross-platform, CX-II compatible computer linking program for the TI-Nspire
2020-09-21 21:08:20 +00:00
## Project setup
2020-09-28 15:07:57 +00:00
You'll need to install [Node.js](https://nodejs.org/en/download/package-manager),
[Yarn](https://classic.yarnpkg.com/en/docs/install/) (which may be included with your installation of Node.js), and
[Rust](https://rustup.rs/). You'll also need a
[C compiler](https://github.com/alexcrichton/cc-rs#compile-time-requirements) available. On Linux, you'll need
`webkit2gtk` and `squashfs-tools`, which, on Ubuntu, can be installed with
`sudo apt install webkit2gtk-4.0 squashfs-tools`.
2020-09-21 21:08:20 +00:00
```
2020-09-27 18:45:54 +00:00
yarn
2020-09-21 21:08:20 +00:00
```
### Compiles and hot-reloads for development
```
2020-09-27 18:45:54 +00:00
yarn tauri:serve
2020-09-21 21:08:20 +00:00
```
### Compiles and minifies for production
```
2020-09-27 18:45:54 +00:00
yarn tauri:build
2020-09-21 21:08:20 +00:00
```
### Lints and fixes files
```
yarn lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).