1ed6c05011
served up from the rates/ directory, although in production the current in-repo files are substituted with JSON pulled in from the VM's internal_metadata configuration.
11 lines
298 B
Bash
Executable File
11 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd /opt/spearhead/portal
|
|
|
|
# first extract the package and image rates from VM metadata
|
|
/usr/sbin/mdata-get sc:image_subscription_rates > rates/images.json
|
|
/usr/sbin/mdata-get sc:package_rates > rates/packages.json
|
|
|
|
# start up our server
|
|
/opt/local/bin/node bin/server.js cfg/prod.json &
|