https://github.com/flashbots/launcher
https://github.com/flashbots/launcher
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flashbots/launcher
- Owner: flashbots
- License: mit
- Created: 2023-11-16T11:54:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-30T12:43:32.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T15:16:46.058Z (over 1 year ago)
- Language: Go
- Size: 22.5 KB
- Stars: 1
- Watchers: 17
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# launcher
Prepare the environment for a sub-process and launch it:
- Inject the secrets from:
- AWS secret manager
- Azure key vault
- Set max open file limit.
## TL;DR
```shell
go run github.com/flashbots/launcher/cmd \
--aws-secret-arn test \
bash -c 'echo "${_ANSWER} is the answer to ${_QUESTION}"'
```
```text
42 is the answer to The Ultimate Question of Life, the Universe, and Everything
```
Also:
```shell
go run github.com/flashbots/launcher/cmd \
--ulimit-soft 1024 \
--ulimit-hard 4096 \
bash -c "ulimit -Sn; ulimit -Hn"
```
```text
1024
4096
```