|
1 |
| -# Docusaurus Template Workshop |
| 1 | +# Developer Days AI Agents Lab |
2 | 2 |
|
3 |
| -This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator. It's available on https://mongodb-developer.github.io/docusaurus-workshop/. |
| 3 | +This is the AI Agents Lab used during MongoDB Developer Days that covers building AI Agents using a fully open AI stack. |
4 | 4 |
|
5 |
| -This is a template to create new Workshop documentation sites. Contains info on how to use Docusaurus and is a good starting point. |
| 5 | +You can access the online version of the lab [here](https://mongodb-developer.github.io/ai-agents-lab/). |
6 | 6 |
|
7 |
| -### Installation |
| 7 | +## Running the Lab Locally |
8 | 8 |
|
9 |
| -``` |
10 |
| -npx create-docusaurus@latest name-of-my-new-awesome-workshop https://github.com/mongodb-developer/docusaurus-workshop |
11 |
| -cd name-of-my-new-awesome-workshop |
12 |
| -npm start |
13 |
| -``` |
| 9 | +If you want to run the lab locally, you can start by cloning the repository or downloading the code. You will need to have [Node.js](https://nodejs.org/en/) installed. |
14 | 10 |
|
15 |
| -As you don't want to get the changes of these sample pages, just delete the `.git` folder and then `git init`. |
| 11 | +Once you have the code, you can run the following commands to install the dependencies and start the server: |
16 | 12 |
|
17 |
| -Open `docusaurus.config.js` and change at least the `workshopName` |
18 |
| - |
19 |
| -### Local Development |
20 |
| - |
21 |
| -``` |
22 |
| -$ npm start |
23 | 13 | ```
|
24 |
| - |
25 |
| -This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. |
26 |
| - |
27 |
| -### Build |
28 |
| - |
29 |
| -``` |
30 |
| -$ npm build |
| 14 | +npm install |
| 15 | +npm start |
31 | 16 | ```
|
32 | 17 |
|
33 |
| -This command generates static content into the `build` directory and can be served using any static contents hosting service. |
| 18 | +You can then access the lab at http://localhost:3000 |
34 | 19 |
|
35 |
| -### Deployment |
| 20 | +## Contributing |
36 | 21 |
|
37 |
| -Use the provided Github Action, or deploy manually after building |
| 22 | +If you find any issues with the lab, please open an issue or submit a pull request. |
38 | 23 |
|
39 |
| -### Disclaimer |
| 24 | +## License |
40 | 25 |
|
41 |
| -Use at your own risk; not a supported MongoDB product |
| 26 | +This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details |
0 commit comments