@venizia/ignis-docs 0.0.4-0 → 0.0.4-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venizia/ignis-docs",
3
- "version": "0.0.4-0",
3
+ "version": "0.0.4-1",
4
4
  "description": "Documentation and MCP Server for Ignis Framework",
5
5
  "keywords": [
6
6
  "ignis",
@@ -786,8 +786,9 @@ await app.boot();
786
786
  - **Guides:**
787
787
  - [Bootstrapping Concepts](/guides/core-concepts/application/bootstrapping)
788
788
  - [Application Guide](/guides/core-concepts/application/)
789
- - [Auto-Discovery](/guides/core-concepts/auto-discovery.md)
790
789
 
791
790
  - **Best Practices:**
792
- - [Application Structure](/best-practices/architecture/project-structure.md)
793
- - [Environment Configuration](/best-practices/configuration/environment.md)
791
+ - [Architectural Patterns](/best-practices/architectural-patterns)
792
+
793
+ - **Configuration:**
794
+ - [Environment Variables](/references/configuration/environment-variables)
@@ -471,14 +471,13 @@ By leveraging these structured configuration options and the `ControllerFactory`
471
471
  - [Dependency Injection](./dependency-injection.md) - DI patterns and injection
472
472
 
473
473
  - **Guides:**
474
- - [Building Your First API](/guides/getting-started/first-api.md)
475
- - [Controllers Guide](/guides/core-concepts/controllers.md)
476
- - [Routing and Decorators](/guides/core-concepts/routing.md)
474
+ - [Controllers Guide](/guides/core-concepts/controllers)
475
+ - [Building a CRUD API](/guides/tutorials/building-a-crud-api)
477
476
 
478
477
  - **Best Practices:**
479
- - [API Design Patterns](/best-practices/architecture/api-design.md)
480
- - [Error Handling](/best-practices/architecture/error-handling.md)
481
- - [Request Validation](/best-practices/security/input-validation.md)
478
+ - [API Usage Examples](/best-practices/api-usage-examples)
479
+ - [Troubleshooting Tips](/best-practices/troubleshooting-tips)
480
+ - [Security Guidelines](/best-practices/security-guidelines)
482
481
 
483
482
  - **External Resources:**
484
483
  - [OpenAPI Specification](https://swagger.io/specification/)
@@ -594,8 +594,10 @@ Error handlers log every error. For high error rates, consider:
594
594
  - [Dependency Injection](./dependency-injection.md) - DI container and providers
595
595
 
596
596
  - **Guides:**
597
- - [Building Your First API](/guides/getting-started/first-api.md)
598
- - [Error Handling Best Practices](/best-practices/architecture/error-handling.md)
597
+ - [Building a CRUD API](/guides/tutorials/building-a-crud-api)
598
+
599
+ - **Best Practices:**
600
+ - [Troubleshooting Tips](/best-practices/troubleshooting-tips)
599
601
 
600
602
  - **External Resources:**
601
603
  - [Hono Middleware Documentation](https://hono.dev/docs/guides/middleware)
@@ -724,8 +724,7 @@ export class ConfigProvider extends BaseProvider<Config> {
724
724
  - [Building Services](/guides/core-concepts/services.md)
725
725
 
726
726
  - **Best Practices:**
727
- - [Dependency Injection Patterns](/best-practices/architecture/dependency-injection.md)
728
- - [Service Layer Patterns](/best-practices/architecture/service-patterns.md)
727
+ - [Architectural Patterns](/best-practices/architectural-patterns)
729
728
 
730
729
  - **External Resources:**
731
730
  - [Factory Pattern](https://refactoring.guru/design-patterns/factory-method)
@@ -207,7 +207,7 @@ await repo.deleteAll({ where: {}, options: { force: true } });
207
207
  - [Repositories Guide](/guides/core-concepts/persistent/repositories) - Creating repositories tutorial
208
208
  - [Models](/guides/core-concepts/persistent/models) - Entity definitions used by repositories
209
209
  - [DataSources](/guides/core-concepts/persistent/datasources) - Database connections
210
- - [Services](/guides/core-concepts/persistent/services) - Use repositories for data access
210
+ - [Services](/guides/core-concepts/services) - Use repositories for data access
211
211
  - [Transactions](/guides/core-concepts/persistent/transactions) - Multi-operation consistency
212
212
 
213
213
  - **Repository Topics:**
@@ -117,5 +117,5 @@ By adhering to this pattern, you keep your code organized, testable, and maintai
117
117
  - [Dependency Injection Guide](/guides/core-concepts/dependency-injection.md)
118
118
 
119
119
  - **Best Practices:**
120
- - [Service Layer Patterns](/best-practices/architecture/service-patterns.md)
121
- - [Testing Services](/best-practices/testing/unit-testing.md)
120
+ - [Architectural Patterns](/best-practices/architectural-patterns)
121
+ - [Testing Guide](/guides/tutorials/testing)
@@ -119,4 +119,4 @@ socketClient.subscribe({
119
119
  - [Socket.IO Redis Adapter](https://socket.io/docs/v4/redis-adapter/) - Scaling guide
120
120
 
121
121
  - **Tutorials:**
122
- - [Real-Time Chat Application](/guides/tutorials/real-time-chat) - Socket.IO tutorial
122
+ - [Real-Time Chat Application](/guides/tutorials/realtime-chat) - Socket.IO tutorial
@@ -630,5 +630,5 @@ class UserRepository extends DefaultCRUDRepository<User> {
630
630
  - [Core Concepts](/guides/core-concepts/application/) - Architecture deep-dive
631
631
 
632
632
  - **Best Practices:**
633
- - [Architecture Patterns](/best-practices/architecture/)
634
- - [Security Guidelines](/best-practices/security/)
633
+ - [Architectural Patterns](/best-practices/architectural-patterns)
634
+ - [Security Guidelines](/best-practices/security-guidelines)
@@ -732,9 +732,9 @@ if (isTerminal) {
732
732
  - [Services](../base/services.md) - Business logic with status transitions
733
733
 
734
734
  - **Guides:**
735
- - [Data Modeling](/guides/core-concepts/models.md)
736
- - [Working with Repositories](/guides/core-concepts/repositories.md)
735
+ - [Data Modeling](/guides/core-concepts/persistent/models)
736
+ - [Working with Repositories](/guides/core-concepts/persistent/repositories)
737
737
 
738
738
  - **Best Practices:**
739
- - [State Machine Patterns](/best-practices/architecture/state-machines.md)
740
- - [Entity Lifecycle Management](/best-practices/architecture/entity-lifecycle.md)
739
+ - [Architectural Patterns](/best-practices/architectural-patterns)
740
+ - [Data Modeling Best Practices](/best-practices/data-modeling)