mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 02:47:27 +00:00
21 lines
367 B
Markdown
21 lines
367 B
Markdown
|
|
# Tooljet marketplace
|
||
|
|
|
||
|
|
## Steps to install npm package to a plugin
|
||
|
|
|
||
|
|
```bash
|
||
|
|
npm i <npm-package-name> --workspace=<plugin-name-in-package-json>
|
||
|
|
```
|
||
|
|
|
||
|
|
## Steps to build
|
||
|
|
|
||
|
|
```bash
|
||
|
|
npm install
|
||
|
|
npm run build --workspaces
|
||
|
|
```
|
||
|
|
|
||
|
|
## Update the plugins to S3 bucket
|
||
|
|
|
||
|
|
```bash
|
||
|
|
AWS_ACCESS_KEY_ID=<key> SECRET_ACCESS_KEY=<secret> AWS_BUCKET=<bucket> node scripts/upload-to-s3.js
|
||
|
|
```
|