This template provides everything you need to start running a new server project using Cinderlink Framework. After you clone this repository, you can install all dependencies and start the server by running the following commands:
pnpm i
pnpm cinderlink init
pnpm cinderlink start
After initializing the server, you can customize your configuration by editing the cinderlink.config.js
file.
You can create your own plugins in the src
folder and add them to the cinderlink.config.js
file.
By default the template will use the default plugins from the @cinderlink/server-bin package. You can find more information about the default plugins in the documentation (TODO).
You can create your own plugins by creating a new class that extends the PluginInterface class from the @cinderlink/core-types package. An example plugin can be found in the example-plugin directory in this repository.