An open API service indexing awesome lists of open source software.

https://github.com/panytsch/angular-udemy-course

repository for project/tasks/homework of course https://www.udemy.com/course/the-complete-guide-to-angular-2/
https://github.com/panytsch/angular-udemy-course

angular javascript typescript udemy

Last synced: about 2 months ago
JSON representation

repository for project/tasks/homework of course https://www.udemy.com/course/the-complete-guide-to-angular-2/

Awesome Lists containing this project

README

          

# angular-udemy-course

# run in docker

Build and push image

```docker build --tag angular-local:1.0 .```

Run on linux

```docker run --rm -it -v $PWD:/app -u 1000:1000 -w /app -p 4200:4200 angular-local:1.0```

Run container on windows

```docker run --rm -it -v "%cd%:/app" -w /app -p 4200:4200 angular-local:1.0```

serve in container

```ng serve --host```