Manual Setup
How to manually set up Toolsync in your project.
It's highly recommended to use the create command to set up Toolsync in your project. However, if you prefer to do it manually, you can follow these steps.
Manual Installation
First of all, you need to install the Toolsync CLI. It's also recommended you install the @toolsync/builtin package. You can do this with your package manager of choice:
bun add -D @toolsync/cli @toolsync/builtinpnpm add -Dw @toolsync/cli @toolsync/builtinnpm install --save-dev @toolsync/cli @toolsync/builtinyarn add --save-dev @toolsync/cli @toolsync/builtinConfiguration
Now, create a toolsync.json file in the root of your project. It will configure any plugins you want to use.
{
"@toolsync/builtin/package-readme": {}
}See the Configuration page for details.
Create config files
Now that Toolsync is installed and configured, you can run toolsync prepare.
bun toolsync prepare --config toolsync.jsonpnpm toolsync prepare --config toolsync.jsonnpx toolsync prepare --config toolsync.jsonyarn toolsync prepare --config toolsync.jsonFound an issue? Have a suggestion? Open an issue on GitHub ✨.