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/
- Host: GitHub
- URL: https://github.com/panytsch/angular-udemy-course
- Owner: panytsch
- License: mit
- Created: 2020-05-04T11:06:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-02T13:04:56.000Z (about 6 years ago)
- Last Synced: 2025-01-06T20:46:27.705Z (over 1 year ago)
- Topics: angular, javascript, typescript, udemy
- Language: TypeScript
- Homepage:
- Size: 216 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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```