mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
388 B
21 lines
388 B
# Local install
|
|
|
|
The local method uses the [Node.js](https://nodejs.org/en) installation found on your system.
|
|
|
|
## Requirements
|
|
|
|
- **Node 20** or later
|
|
- [pnpm](https://pnpm.io/installation)
|
|
|
|
## Install
|
|
|
|
```bash
|
|
git clone -b dev/0.15.0 https://github.com/tycrek/ass.git && cd ass/
|
|
pnpm i
|
|
# or: npm i -D
|
|
pnpm run dev
|
|
|
|
# After ass has been compiled, you can instead use:
|
|
pnpm run start
|
|
```
|