README, setup and ignore files
This commit is contained in:
parent
e0b43af151
commit
b4c4d546a8
|
|
@ -0,0 +1,8 @@
|
||||||
|
.cache/
|
||||||
|
.config/
|
||||||
|
.copilot/
|
||||||
|
.cpan/
|
||||||
|
.gemini/
|
||||||
|
.idx/
|
||||||
|
.local/
|
||||||
|
.ssh/
|
||||||
|
|
@ -1,3 +1,11 @@
|
||||||
Get started by customizing your environment (defined in the .idx/dev.nix file) with the tools and IDE extensions you'll need for your project!
|
Get started by customizing your environment (defined in the .idx/dev.nix file) with the tools and IDE extensions you'll need for your project!
|
||||||
|
|
||||||
Learn more at https://developers.google.com/idx/guides/customize-idx-env
|
Learn more at https://developers.google.com/idx/guides/customize-idx-env
|
||||||
|
|
||||||
|
# Gcloud Cloud Run Deploys
|
||||||
|
|
||||||
|
```
|
||||||
|
gcloud auth login
|
||||||
|
gcloud config set project myanthosproject2
|
||||||
|
gcloud run deploy myperlmcp --source ./
|
||||||
|
```
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -x
|
||||||
|
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install ca-certificates gnupg curl
|
||||||
|
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg
|
||||||
|
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
|
||||||
|
sudo apt-get update && sudo apt-get install google-cloud-cli
|
||||||
|
gcloud auth login
|
||||||
|
gcloud config set project myanthosproject2
|
||||||
Loading…
Reference in New Issue