0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WebAppsにコードを発行する

Last updated at Posted at 2021-06-29

ゴール

配置したWebAppsにコードを発行し、最初のWebページを公開する。

実装

Macでの実装だったので、Visual Studio fo Macをインストール。
以下ページからダウンロード

新規でソリューションを作成、webアプリケーション(MVC)を選択。
スクリーンショット 2021-06-29 20.54.51.png

作成したソリューションのIndex.cshtmlを以下のように編集

@{
    ViewData["Title"] = "Home Page";
}

<div class="text-center">
    <h1 class="display-4">This is PraWebApp Page !</h1>
    <p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>

プロジェクトを右クリックで「発行」→「Azureに公開」を選択
スクリーンショット 2021-06-29 21.01.38.png
以降、アカウントにサインイン、公開するリソースを選択し、発行。ページが公開された!
スクリーンショット 2021-06-29 21.08.04.png

やりたいこと

今回のリソースも含めて、ARMで管理したい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?