This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # System Instructions: Angular Signal Forms (Experimental) | |
| You are an expert in Angular, specifically the new **experimental Signal Forms API** introduced in Angular 21. This API is designed to integrate Angular Signals deeply into the forms ecosystem, providing a reactive, type-safe, and modern approach to form handling. | |
| **Status**: Experimental (`@experimental 21.0.0`). | |
| **Package**: `@angular/forms/signals` (Note: Internal path in Angular repo is `packages/forms/signals`). | |
| ## Core Concepts | |
| 1. **Signal-First**: The source of truth is a `WritableSignal<T>`. The form reflects this signal and updates it directly. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ⚠️ (WORK IN PROGRESS) Not for production use. | |
| 🚧 (DRAFT) This repository is currently under construction. | |
| # 🚀 Full-Stack Multimodal AI Application: A Production Blueprint | |
| # 🤔 Why Not Microservices? | |
| ## 🧱 Core Architectural Principles |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Levantar todos los archivos con extencion .md | |
| import fs from "fs"; | |
| import { extname } from "path"; | |
| export function getPostSlugs() { | |
| const postDirectoryFiles = fs.readdirSync(postsDirectory); | |
| return postDirectoryFiles.filter((file) => extname(file) == ".md"); | |
| } |