Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 816 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 816 Bytes

Angular Template

Description

This is an Angular template on Docker. The .devcontainer folder contains the configuration so that VSCode can auto-start the container for development.

In order to include VSCode extensions, first find the extension name from the extension's page (i.e. eamodio.gitlens):

Then add the extension name to devcontainer.json file.

Getting Started

  • Create a new repo and get the git clone URL for that new repo.
  • Change the remote URL to new repo.
# Check the current remote URL
git remote -v
# Set remote to new URL
git remote set-url origin <https or ssl-url>

Starting With Angular

ng new sampleapp
cd sampleapp
# Start Angular server
ng serve --host 0.0.0.0