adding pulumi section

This commit is contained in:
kirby 2025-06-04 09:34:44 +02:00
parent 7473da14f4
commit f6ac190c95
2 changed files with 31 additions and 0 deletions

5
pulumi/cli.md Normal file
View File

@ -0,0 +1,5 @@
### Set up S3 backend in Scaleway
```bash
pulumi login 's3://bucketName?endpoint=s3.fr-par.scw.cloud'
```

26
pulumi/install.md Normal file
View File

@ -0,0 +1,26 @@
## Pulumi
### Install Pulumi
```bash
curl -fsSL https://get.pulumi.com | sh
```
## Typescript
### Install node from pre-compiled binaries
```bash
cd /tmp/
wget https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-x64.tar.xz
tar xf node-v22.16.0-linux-x64.tar.xz
cp node-v22.16.0-linux-x64/bin/node ~/.local/bin/
source ~/.zshrc
```
### Install pnpm
```bash
curl -fsSL https://get.pnpm.io/install.sh | sh -
source ~/.zshrc
```