forked from gsn/predictor
11 lines
252 B
Bash
11 lines
252 B
Bash
#!/bin/bash
|
|
# Start API with HTTP downloads instead of S3
|
|
|
|
export GSN_PREDICTOR_GRIB_USE_S3=false
|
|
|
|
echo "Starting API with HTTP downloads from NOMADS..."
|
|
echo "USE_S3 = $GSN_PREDICTOR_GRIB_USE_S3"
|
|
echo ""
|
|
|
|
cd "$(dirname "$0")"
|
|
go run ./cmd/api/main.go
|