026997e725
* First pass at an all-in-one compose project * Sort out dependencies so uplink can build in docker * Added the final bits to make this work * Add readme for all-in-one * Fix sed to work on OS X and Linux * Make the readme for all-in-one better * Only bring up the satellite and uplink after fixing the mock overlay * Use a dummy value for mock overlay for now * Finishing touches * Fix url form for aws cli tool * Move files out of all-in-one directory to help with directory confusion. * Added a make target to make all-in-one even better
7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
./uplink setup --api-key "${API_KEY}" --satellite-addr "${SATELLITE_ADDR}"
|
|
|
|
exec ./uplink run "$@"
|