mirror of
https://github.com/Stability-AI/stablediffusion.git
synced 2024-12-22 23:55:00 +00:00
11 lines
400 B
Bash
11 lines
400 B
Bash
|
source .env
|
||
|
rm -rf ./app
|
||
|
rsync --exclude='.' --recursive --copy-links ../ ./app
|
||
|
pulumi config set name $NAME --stack dev
|
||
|
pulumi config set project $PROJECT --stack dev
|
||
|
pulumi config set region $REGION --stack dev
|
||
|
pulumi config set node_count $NODE_COUNT --stack dev
|
||
|
pulumi config set machine_type $MACHINE_TYPE --stack dev
|
||
|
pulumi config set replicas $REPLICAS --stack dev
|
||
|
pulumi up --yes --stack dev
|