Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The [FullStacksDev](https://FullStacks.dev) Angular and Firebase base template
# The [FullStacksDev](https://fullstacks.dev) Angular and Firebase base template

Part of the curated [**FullStacksDev Angular and Firebase tech stack**](https://FullStacks.dev/TODO). For solo devs and very small teams.
Part of the curated [**FullStacksDev Angular and Firebase tech stack**](https://fullstacks.dev/#angular-and-firebase). For solo devs and very small teams.

An opinionated full-stack starting point for building a web app, using Angular and Firebase. Aiming to be lean and useful enough so you can hit the ground running and focus on stuff that matters.

Expand Down Expand Up @@ -455,20 +455,20 @@ Some email templates (e.g. for Authentication) are customizable in the [Firebase

## How we decide what goes into the base template

It's important that the base template is as lean and broadly useful as possible, whilst maintaining the opinionated approach to the tech stack, architecture and patterns that we are developing as part of the _curated tech stacks_ approach in [FullStacksDev](https://FullStacks.dev).
It's important that the base template is as lean and broadly useful as possible, whilst maintaining the opinionated approach to the tech stack, architecture and patterns that we are developing as part of the _curated tech stacks_ approach in [FullStacksDev](https://fullstacks.dev).

For this reason, we carefully consider what goes into the base template and err on the side of caution. New capabilities are only added to the base template when they are proven to be broadly useful and fit within the tech stack, by first applying them to real-world projects and the example apps.

## What next? Check out the example apps for this tech stack…

If you want to continue learning more about the [FullStacksDev](https://FullStacks.dev) Angular and Firebase tech stack you can check out the premium example apps built using this template:
If you want to continue learning more about the [FullStacksDev](https://fullstacks.dev) Angular and Firebase tech stack you can check out the premium example apps built using this template:

- [Simple example app](TODO)
- [Advanced example app](TODO)
- [Simple example app](https://github.com/FullStacksDev/angular-and-firebase-simple-example-app)
- [Advanced example app](https://github.com/FullStacksDev/angular-and-firebase-advanced-example-app)

These apps showcase the capabilities of the tech stack and give you an opinionated, pragmatic and in-depth learning experience. Each come with comprehensive documentation and learning content covering architecture, design decisions, data models, patterns, practices, tech stack capabilities and more.

You can read more about the purpose and specs of the example apps here: TODO: link to the example apps spec page
You can read more about the [purpose and specs of the example apps](https://fullstacks.dev/example-apps).

## License

Expand Down
2 changes: 1 addition & 1 deletion app/src/app/website/feature/home-page.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('HomePageComponent', () => {
const el = ngMocks.find('h1');
expect(el).toBeTruthy();
expect(el.nativeElement.textContent).toContain(
'This is the FullStacks.dev Angular and Firebase template running on Firebase',
'This is the FullStacksDev Angular and Firebase template running on Firebase',
);
});
});
4 changes: 3 additions & 1 deletion app/src/app/website/feature/home-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
imports: [],
template: `
<h1 class="mat-headline-5 mt-8 text-center leading-normal">
This is the FullStacks.dev Angular and Firebase template running on Firebase
This is the
<a class="underline decoration-dotted" href="https://fullstacks.dev">FullStacksDev</a>
Angular and Firebase template running on Firebase
</h1>
`,
styles: ``,
Expand Down