diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-09-13 17:28:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-13 17:28:57 +0200 |
| commit | ff7dfda051e0103b0df453473eb0f08cdc37ae85 (patch) | |
| tree | 2e80525809ecb5afe010faa99898ca479965b95a /site/docs/intro.mdx | |
| parent | fde9ba4fb88bada9d9873ba21904e9e1a66b0c46 (diff) | |
| parent | fd208941622cd559a0c3a196a0754a1b33db402b (diff) | |
merge: Add documentation using Docusaurus (#97)
This pull request implements the new OpenDC documentation website using Docusaurus 2.
## Implementation Notes :hammer_and_pick:
* Add initial Docusaurus website.
* Migrate existing docs to Docusaurus.
* Configure Prettier for Docusaurus.
* Add tutorials to OpenDC website (#28)
* Add deployment workflow via GitHub actions
## External Dependencies :four_leaf_clover:
* Docusaurus 2
Closes #28
Diffstat (limited to 'site/docs/intro.mdx')
| -rw-r--r-- | site/docs/intro.mdx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/site/docs/intro.mdx b/site/docs/intro.mdx new file mode 100644 index 00000000..840ae343 --- /dev/null +++ b/site/docs/intro.mdx @@ -0,0 +1,27 @@ +--- +sidebar_position: 1 +--- + +# Introduction + +OpenDC is a free and open-source platform for cloud datacenter simulation aimed at both research and education. + +<div className="container"> + <div className="row"> + <div className="col col-3 text--center"> + <img src={require("@site/src/components/HomepageFeatures/screenshot-construction.png").default} alt="Constructing a cloud datacenter with OpenDC" /> + </div> + <div className="col col-3 text--center"> + <img src={require("@site/src/components/HomepageFeatures/screenshot-results.png").default} alt="Analysis of results reported by OpenDC" /> + </div> + </div> +</div> + +Users can construct new datacenter designs and define portfolios of scenarios (experiments) to explore how their designs +perform under different workloads, schedulers, and phenomena (e.g., failures or performance interference). + +OpenDC is accessible both as a ready-to-use platform hosted by us online at [app.opendc.org](https://app.opendc.org), and as +source code that users can run locally on their own machine or via Docker. + +To learn more about OpenDC, have a look through our paper on [OpenDC 2.0](https://atlarge-research.com/pdfs/ccgrid21-opendc-paper.pdf) +or on our [vision](https://atlarge-research.com/pdfs/opendc-vision17ispdc_cr.pdf). |
