42 lines
669 B
Markdown
42 lines
669 B
Markdown
# NiimBlue temporary repository
|
|
|
|
## Launching development server
|
|
|
|
Skip steps you have done.
|
|
|
|
1. Install [git](https://git-scm.com)
|
|
|
|
2. Install [nodejs](https://nodejs.org)
|
|
|
|
3. Install [yarn](https://yarnpkg.com)
|
|
|
|
4. Clone repository
|
|
|
|
```bash
|
|
git clone https://gitee.mmote.ru/MultiMote/niimblue-nightly.git
|
|
```
|
|
|
|
5. Install dependencies
|
|
|
|
```bash
|
|
cd niimblue-nightly
|
|
yarn --cwd niimbluelib
|
|
yarn --cwd niimblue
|
|
```
|
|
|
|
6. Run dev server
|
|
|
|
```bash
|
|
yarn --cwd niimblue dev-locallib
|
|
```
|
|
|
|
or
|
|
|
|
```bash
|
|
cd niimblue
|
|
yarn dev-locallib
|
|
```
|
|
|
|
This command will install local niimbluelib to the niimblue project and run the server.
|
|
If niimbluelib is modified you must re-run this command.
|