microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.2-py

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/README.md

69lines · modecode

1# TypeAgent Documentation
2
3This directory contains the documentation site for TypeAgent.
4
5## Development
6
7### Prerequisites
8
9- Node.js (v14 or later)
10- npm or yarn
11
12### Setup
13
141. Install dependencies:
15 ```bash
16 cd docs
17 npm install
18 ```
19
202. Start the development server:
21 ```bash
22 npm start
23 ```
24
253. Open your browser and navigate to `http://localhost:8080`
26
27### Directory Structure
28
29```
30docs/
31├── _data/ # Global data files
32│ ├── navigation.js # Navigation structure
33│ └── site.json # Site metadata
34├── _includes/ # Layout templates
35│ ├── base.njk # Base layout
36│ └── docs.njk # Documentation layout
37├── assets/ # Static assets
38│ └── css/
39│ └── style.css # CSS styles
40├── content/ # Markdown content
41│ ├── index.md # Homepage/Documentation index
42│ └── ... # Other documentation pages
43├── .eleventy.js # Eleventy configuration
44├── .gitignore # Git ignore file
45└── package.json # Node.js dependencies
46```
47
48### Building
49
50To build the site:
51
52```bash
53cd docs
54npm run build
55```
56
57The built site will be in the `docs/_site` directory.
58
59## Deployment
60
61The site is automatically deployed to GitHub Pages when changes are pushed to the main branch. The deployment is handled by GitHub Actions.
62
63## Trademarks
64
65This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
66trademarks or logos is subject to and must follow
67[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
68Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
69Any use of third-party trademarks or logos are subject to those third-party's policies.
70