AbdulElahGwaith's picture
Upload folder using huggingface_hub
ebffcb3 verified
metadata
Order: 6
Area: nodejsdeployment
TOCTitle: Publish changes
PageTitle: Publish changes
MetaDescription: null
MetaSocialImage: null
DateApproved: 10/5/2017
ShortDescription: null

Publish Changes to your Application

In this step, you will make changes to your application, commit them to the local Git repository, and then redeploy your site by pushing to Azure.

Edit Your Application

Open the myExpressApp folder in Visual Studio Code.

Open VS Code

Open views/index.pug and change line 5 to say something fun such as 'VS Code Rocks!!' and then save the file (kb(workbench.action.files.save)).

Edit pug file

Pro Tip: Turn on "AutoSave" from the File > AutoSave menu!

Commit Changes

Open the Source Control view (kb(workbench.view.scm)), enter a commit message, and press kbstyle(Ctrl+Enter) to commit the change (kbstyle(Cmd+Enter) on macOS).

Commit Changes

Publish Changes to Website

Click on the Source Control overflow menu (...) and choose Publish.

Publish Menu

You will be prompted for a Remote to publish to, choose Azure.

Choose Azure

Your changes will then be deployed to the Website. Refresh your application and you should see the changes.

Published Changes


I can see my changes!