@@ -85,17 +85,17 @@ This will create the following structure:
8585my-documentation/
8686├── docs/ # Source documentation
8787│ └── README.md # Home page
88- ├── docforge .config.ts # Main configuration
88+ ├── knowledge .config.ts # Main configuration
8989├── package.json # Project dependencies
9090└── .gitignore # Git ignored files
9191```
9292
9393### 2. Basic Configuration
9494
95- Edit the ` docforge .config.ts` file:
95+ Edit the ` knowledge .config.ts` file:
9696
9797``` typescript
98- import type { DocForgeConfig } from ' ./src/config.js' ;
98+ import type { KnowledgeConfig } from ' ./src/config.js' ;
9999
100100export default {
101101 // Directories
@@ -144,7 +144,7 @@ export default {
144144 host: ' localhost' ,
145145 livereload: true
146146 }
147- } as DocForgeConfig ;
147+ } as KnowledgeConfig ;
148148```
149149
150150### 3. Documentation Structure
@@ -644,7 +644,7 @@ bun run src/cli.ts build --verbose
644644find docs -name " *.md" -exec echo " Checking: {}" \; -exec head -1 {} \;
645645
646646# Verify config syntax
647- bun run -e " import('./docforge .config.ts')"
647+ bun run -e " import('./knowledge .config.ts')"
648648```
649649
650650#### 3. Server Not Starting
708708fi
709709
710710# Verify configuration
711- if [ -f " docforge .config.ts" ]; then
711+ if [ -f " knowledge .config.ts" ]; then
712712 echo " ✅ Configuration found"
713713else
714714 echo " ⚠️ Configuration not found - execute 'bun run init'"
@@ -739,7 +739,7 @@ After installation and configuration:
739739
740740- 📖 ** Documentation** : [ knowledge.dev] ( https://knowledge.dev )
741741- 🐛 ** Issues** : [ GitHub Issues] ( https://github.com/riligar/knowledge/issues )
742- - �� ** Discussions** : [ GitHub Discussions] ( https://github.com/riligar/knowledge/discussions )
742+ - 💬 ** Discussions** : [ GitHub Discussions] ( https://github.com/riligar/knowledge/discussions )
743743- 📧 ** Email** : [ suporte@riligar.click ] ( mailto:suporte@riligar.click )
744744
745745---
0 commit comments