Home

Awesome

LocalCast Weather

Learn Angular, Angular Material, RxJS, and Signal fundamentals with LocalCast Weather using the Kanban method.

Discover stage management with NgRx and SignalStore.

View live demo: https://local-weather-app-duluca.vercel.app

See Changes section for important or breaking changes made to the project.

Angular Version CircleCI DeepScan grade Coverage Status Kanban Board

mat-style4

Chapter specific examples within projects have been renamed, from a ch format to stage. e.g. projects/ch2 would now be located under projects/stage2.

Get the book

LocalCast Weather has been developed to support my book Angular for Enterprise Applications. You can get the book at any major bookstore or find the links at https://AngularForEnterprise.com.

Watch the talk on Architecture for Scalable Angular Apps on Pluralsight.

Check out the slides for Architecture for Scalable Angular Apps free at Slides.com.

Check out LemonMart, an Angular Grocery Store LOB App implemented with a Router-first architecture with common recipes and patterns at https://github.com/duluca/lemon-mart. You can also use LemonMart as a template project to start your own app.

Build, debug and publish Docker images with npm Scripts for Docker and achieve Blue-Green deployments on AWS Fargate with npm Scripts for AWS.

Build

Developers

This app was developed to demonstrate Angular fundamentals, unit testing, and different techniques for building Angular apps using reactive patterns. The app is a good blueprint if you intend to build a largely single-screen app experience. Questions? Consider creating an issue on this repo and buying my book at https://AngularForEnterprise.com.

Pre-requisites

Adapting the template

During Development

Code scaffolding

Further help with Angular CLI

To get more help on the Angular CLI, use ng help or go check out the Angular CLI README.

Full-Stack Setup with Docker Compose and Deploying to AWS

See the example project here https://github.com/duluca/lemon-mart-server

Changes

Changes are inevitable to keep the project up-to-date with libraries, tools, patterns and practices. Below are some notable changes that differ from the 1st, 2nd, and 3rd edition of my book.

Angular 17

Angular 16

Angular 13-15

Angular 12 configuration changes

Augury

Renamed master branch to main

If you already have a master branch locally, then execute the following commands:

git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a

Now

Waffle.io

Sadly Waffle.io no longer exists. I recommend using GitHub Projects as a free replacement.

Using Zeit Now with Docker

Unfortunately, Zeit Now no longer allows the publication of arbitrary Dockerfile images. Using Zeit v2 you can publish the output of your dist folder and still be able to host your application for free.

A replacement for publishing arbitrary Docker images would be a new service called Google Cloud Run. A sample command would look like gcloud beta run deploy --image localcast-weather.

Using Google Cloud Run with Docker

As of January 2024, Cloud Run has deprecated private container repositories, which breaks its integration with the docker command. This seemingly subtle change moves Cloud Run from an easy-to-use to a complicated-cloud-service category. For this reason, it has been removed from the book.