mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
15 lines
338 B
Markdown
15 lines
338 B
Markdown
|
To build mjolnir, you have to have installed `yarn` 1.x and Node 14.
|
||
|
|
||
|
```bash
|
||
|
git clone https://github.com/matrix-org/mjolnir.git
|
||
|
cd mjolnir
|
||
|
|
||
|
yarn install
|
||
|
yarn build
|
||
|
|
||
|
# Copy and edit the config. It *is* recommended to change the data path.
|
||
|
cp config/default.yaml config/development.yaml
|
||
|
nano config/development.yaml
|
||
|
|
||
|
node lib/index.js
|
||
|
```
|