Dendron Next Server
Quickstart
- follow instructions here to clone the repository and install dependencies
- navigate to server package
cd {repo-root}/packages/dendron-next-server
- start server
yarn dev
- Open
dendron-next-server.code-workspace
to start editing the code
Working with the Dendron Engine
If your working with the Dendron Engine (eg. fetching notes, config or schemas), you'll need to start an instance of the engine.
From dendron.pro.dendron-cli
Go to text →
npm install -g @dendronhq/dendron-cli
Next, use the launchEngineServer
command to start the server to an existing workspace
LOG_DST=/tmp/server.txt LOG_LEVEL=debug dendron-cli launchEngineServer --port 3005 --wsRoot ~/Dendron/
Create an .env.local
file under dendron-next-server
and add the following
ENGINE_ENDPOINT_PORT=3005
Run yarn dev
to start the next server
Cookbook
From dendron.dev.cook
Go to text →