Files
Draupnir/docs/setup_selfbuild.md
T
gnuxie 4f1781e31b Rename the bot from Mjolnir to Draupnir in the documentation
Following through with this everywhere will take a lot of time.
2023-02-08 15:04:42 +00:00

18 lines
516 B
Markdown

These instructions are to build and run draupnir without using [Docker](./setup_docker.md).
You need to have installed `yarn` 1.x and Node 16.
```bash
git clone https://github.com/gnuxie/draupnir.git
cd draupnir
yarn install
yarn build
# Copy and edit the config. It *is* recommended to change the data path,
# as this is set to `/data` by default for dockerized draupnir.
cp config/default.yaml config/production.yaml
nano config/production.yaml
node lib/index.js --draupnir-config ./config/production.yaml
```