https://hackmd.io/9QPpKRnETMOAVO9EJXHC_Q
docker run -it --rm ubuntu:23.10
https://learn.microsoft.com/zh-tw/dotnet/core/install/linux-ubuntu-2310
apt-get update
apt-get install wget
apt-get install vim
apt-get install build-essential
apt-get install libicu-dev
# mac
brew tap isen-ng/dotnet-sdk-versions
brew install --cask dotnet-sdk8-0-100
# x64
apt-get update && \
apt-get install -y dotnet-sdk-8.0
# arm64
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x ./dotnet-install.sh
./dotnet-install.sh --version latest
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools
source .bashrc
https://learn.microsoft.com/zh-tw/dotnet/core/tools/dotnet-new-sdk-templates
dotnet dev-certs https --clean
dotnet dev-certs https --trust
dotnet new list
dotnet new webapi --use-controllers --no-https -o w1
cd w1
dotnet watch
gcloud auth activate-service-account \ --key-file $(serviceAccount.secureFilePath) 更新image gcloud run services update ezpay-thirdparty \ --image=$(Docker.Registry)/ezpay.thirdparty:$(Build.BuildNumber) \ --update-env-vars ELASTIC_APM_SERVICE_VERSION=$(Build.BuildNumber) \ --region=$(GCP.Region) \ --project=$(GCP.ProjectId)
Dec 25, 2023在左側邊欄上,選擇「搜尋」或前往並尋找您的群組。選擇設定 > 常規 > 權限和群組功能。清除服務帳戶令牌過期複選框。現在您可以為服務帳戶使用者建立沒有到期日的個人存取權杖。
Dec 24, 2023建立ELK Cloud Instance
Dec 22, 2023version: '3.5' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:8.6.2 container_name: elasticsearch environment: discovery.type: single-node ES_JAVA_OPTS: '-Xms1g -Xmx1g' ELASTIC_USERNAME: elastic
Dec 22, 2023or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up