https://github.com/madeindjs/angular-poc
This is my personnal tests with Angular.
https://github.com/madeindjs/angular-poc
Last synced: over 1 year ago
JSON representation
This is my personnal tests with Angular.
- Host: GitHub
- URL: https://github.com/madeindjs/angular-poc
- Owner: madeindjs
- Archived: true
- Created: 2021-08-21T16:19:08.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-23T21:31:47.000Z (almost 5 years ago)
- Last Synced: 2025-02-05T21:54:17.717Z (over 1 year ago)
- Language: TypeScript
- Size: 606 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Angular POC
This is my personal tests with Angular:
- [x] guard
- [x] modules
- [x] lazy loading
- [x] tests
- [x] Github Actions CI
- [x] interceptors
- [x] ngrx
## Development server
Run `ng serve` for a dev server. Navigate to . The app will automatically reload if you change any of the source files.
## Build
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
### Docker
Build image
```sh
docker build -t angular-poc:latest .
```
Then run it
```sh
docker run -p 80:80 angular-poc
```
## Test
```sh
npm run test # using karma
npm run e2e # protractor
```