skillbox/create-instance.sh

11 lines
184 B
Bash
Executable File

#!/bin/bash
name=$1
app=$name-prod
heroku apps:create \
--team skillbox \
--region eu \
--stack heroku-20 \
--addons heroku-postgresql:hobby-basic,scheduler:standard \
$app