mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Some cleanup
This commit is contained in:
parent
97bbc77162
commit
c71320386e
13 changed files with 1601 additions and 240 deletions
|
|
@ -9,3 +9,26 @@ The installer bundles the Safe Chain Node.js application into a standalone binar
|
|||
1. Install the `safe-chain` binary to the system PATH
|
||||
2. Generate and install the CA certificate in the OS trust store
|
||||
3. Configure the system for automatic MITM proxy interception
|
||||
|
||||
## Building the Installer
|
||||
|
||||
To build the installer for the current platform, run the following command from the root of the workspace:
|
||||
|
||||
```bash
|
||||
npm run build:installer
|
||||
```
|
||||
|
||||
To build for a specific platform, you can pass arguments to the script:
|
||||
|
||||
```bash
|
||||
# macOS
|
||||
npm run build:installer -- --platform=macos
|
||||
|
||||
# Linux
|
||||
npm run build:installer -- --platform=linux
|
||||
|
||||
# Windows
|
||||
npm run build:installer -- --platform=windows
|
||||
```
|
||||
|
||||
The build artifacts (binaries and installer packages) will be created in the `installer/dist` directory.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue