Skip to content

Commit

Permalink
v0.14.0 App Centric Release prep (#1063)
Browse files Browse the repository at this point in the history
* Bump version

* Update NOTICE

* Update CHANGELOG

* Update README
  • Loading branch information
alexweininger authored May 24, 2022
1 parent 94e5b0b commit 16b76da
Show file tree
Hide file tree
Showing 10 changed files with 12,769 additions and 2,108 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 0.14.0 - 2022-05-24

We've made some large design changes to the Azure extensions for VS Code. [View App Centric release notes](https://aka.ms/AzCode/AppCentric)

## 0.13.0 - 2022-01-25

### Added
Expand Down
14,837 changes: 12,744 additions & 2,093 deletions NOTICE.html

Large diffs are not rendered by default.

30 changes: 18 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,30 @@ Azure Storage is a Microsoft-managed service providing cloud storage that is hig
## Deploy your Single Page App to Azure Storage

Once you are signed in to your Azure account and you have your app open in Visual Studio Code, click the deploy button in the Azure Storage explorer - it's the blue up arrow - to deploy your app.
Once you are signed in to your Azure account and you have your app open in Visual Studio Code, right click the Storage accounts item and select "Create Storage Account... (Advanced)"

![Deploy from Storage](resources/storage-deploy.png)
![Deploy from Storage](resources/readme/createAdvanced.png)

1. Type a globally unique name for your Storage Account and press Enter. Valid characters for an storage account name are 'a-z' and '0-9'
2. Create a new Resource Group and accept the default name
3. Choose a location in a [region](https://azure.microsoft.com/en-us/global-infrastructure/regions/) near you or near other services you may need to access
> It may take up to a minute for the account to be created
4. When prompted, choose "Enable website hosting" to configure your storage account for static site hosting
5. Enter 'index.html' for the index document path
6. Enter 'index.html' for the 404 error document path
> Index.html is used for the error document because modern Single Page Applications (SPAs) such as React will handle errors in the client. For classic static websites, use the error document to customize your 404 page.
![Activity Log](resources/readme/activityLog.png)

Once you have created your Storage Account, right click on the Storage Account and select "Deploy to Static Website via Azure Storage...".

![Deploy from Storage](resources/readme/deploy.png)

> Tip: Looking for a sample app to deploy? Run `npx create-react-app my-react-app` to create one
Make sure you've compiled your app (run `npm run build` if you created a sample from create-react-app) prior to deploying it to Azure.

1. Choose **Create New Storage Account**
2. Type a globally unique name for your Storage Account and press Enter. Valid characters for an storage account name are 'a-z' and '0-9'
3. Create a new Resource Group and accept the default name
4. Choose a location in a [region](https://azure.microsoft.com/en-us/global-infrastructure/regions/) near you or near other services you may need to access
> It may take up to a minute for the account to be created
5. When prompted, choose "Enable website hosting" to configure your storage account for static site hosting
6. Enter 'index.html' for the index document path
7. Enter 'index.html' for the 404 error document path
> Index.html is used for the error document because modern Single Page Applications (SPAs) such as React will handle errors in the client. For classic static websites, use the error document to customize your 404 page.
8. Select the build output from your current workspace if you have your app open already or browse to the directory containing your compiled application code
Select the build output from your current workspace if you have your app open already or browse to the directory containing your compiled application code
> If you have a `build`, `out`, or `dist` directory, you'll see it as an option to deploy from.

Once the deployment completes, click **Browse to Website** in the prompt to view your freshly deployed website.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-azurestorage",
"displayName": "Azure Storage",
"description": "Manage your Azure Storage accounts including Blob Containers, File Shares, Tables and Queues",
"version": "0.13.1-alpha.12",
"version": "0.14.0",
"publisher": "ms-azuretools",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
Expand Down
Binary file added resources/readme/activityLog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/createAdvanced.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/createResource.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/createStorageAccount.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/deploy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 16b76da

Please sign in to comment.