forked from ovh/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(dev-deps): upgrade VuePress to v1.7.1
uses: `$ yarn upgrade-interactive --latest vuepress` - [email protected] Add new workspace `docs` (single package). Update prebuild cli command script. Signed-off-by: Antoine Leblanc <[email protected]>
- Loading branch information
1 parent
c70ecb5
commit 7dab529
Showing
40 changed files
with
1,230 additions
and
829 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,31 @@ | ||
--- | ||
home: true | ||
actionText: Get Started → | ||
actionLink: /guide/ | ||
footer: BSD 3-Clause Licensed | Copyright © 2020-present OVH SAS | ||
--- | ||
|
||
<div class="features"> | ||
<div class="feature"> | ||
<h2>Application</h2> | ||
<p>Manage your services with ease by using our control panel.</p> | ||
<a | ||
href="https://ovh.com/manager/" | ||
rel="noopener noreferrer" | ||
target="_blank"> | ||
ovh.com/manager | ||
<icon-external-link/> | ||
</a> | ||
</div> | ||
<div class="feature"> | ||
<h2>Website</h2> | ||
<p>To have more informations about our products, please visit our website</p> | ||
<a | ||
href="https://ovhcloud.com" | ||
rel="noopener noreferrer" | ||
target="_blank"> | ||
ovhcloud.com | ||
<icon-external-link/> | ||
</a> | ||
</div> | ||
<div class="feature"> | ||
<h2>Guides</h2> | ||
<p>A good way to find answer to some "how to" questions about OVHcloud products.</p> | ||
<a | ||
href="https://docs.ovh.com" | ||
rel="noopener noreferrer" | ||
target="_blank"> | ||
docs.ovh.com | ||
<icon-external-link/> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
::: warning COMPATIBILITY NOTE | ||
Manager requires [Node.js](https://nodejs.org) >=12.13 and [Yarn](https://yarnpkg.com/) >=1.21.1. | ||
::: | ||
# ovh.github.io/manager | ||
|
||
This site is built with [VuePress][]. Site content is written in Markdown format located in `docs`. | ||
|
||
## Developing | ||
|
||
1. Clone repository | ||
|
||
```sh | ||
$ git clone [email protected]:ovh/manager.git | ||
``` | ||
|
||
2. Install dependencies | ||
|
||
```sh | ||
$ yarn | ||
``` | ||
|
||
3. Start local development environment | ||
|
||
```sh | ||
$ yarn workspace @ovh-ux/manager-documentation run dev | ||
``` | ||
|
||
## Deploying | ||
|
||
```sh | ||
$ yarn workspace @ovh-ux/manager-documentation run deploy | ||
``` | ||
|
||
[VuePress]: https://vuepress.vuejs.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
home: true | ||
actionText: Get Started → | ||
actionLink: /guide/ | ||
footer: BSD 3-Clause Licensed | Copyright © 2020-present OVH SAS | ||
--- | ||
|
||
<div class="features"> | ||
<div class="feature"> | ||
<h2>Application</h2> | ||
<p>Manage your services with ease by using our control panel.</p> | ||
<a | ||
href="https://ovh.com/manager/" | ||
rel="noopener noreferrer" | ||
target="_blank"> | ||
ovh.com/manager | ||
<icon-external-link/> | ||
</a> | ||
</div> | ||
<div class="feature"> | ||
<h2>Website</h2> | ||
<p>To have more informations about our products, please visit our website</p> | ||
<a | ||
href="https://ovhcloud.com" | ||
rel="noopener noreferrer" | ||
target="_blank"> | ||
ovhcloud.com | ||
<icon-external-link/> | ||
</a> | ||
</div> | ||
<div class="feature"> | ||
<h2>Guides</h2> | ||
<p>A good way to find answer to some "how to" questions about OVHcloud products.</p> | ||
<a | ||
href="https://docs.ovh.com" | ||
rel="noopener noreferrer" | ||
target="_blank"> | ||
docs.ovh.com | ||
<icon-external-link/> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
::: warning COMPATIBILITY NOTE | ||
Manager requires [Node.js](https://nodejs.org) >=12.13 and [Yarn](https://yarnpkg.com/) >=1.21.1. | ||
::: |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "@ovh-ux/manager-documentation", | ||
"version": "0.0.0", | ||
"private": true, | ||
"description": "Manager documentation deployed with GitHub Pages", | ||
"scripts": { | ||
"build": "vuepress prebuild docs && vuepress build docs", | ||
"deploy": "yarn run build && gh-pages -d docs/.vuepress/dist -m \"docs: update documentation [skip ci]\"", | ||
"dev": "vuepress prebuild docs && vuepress dev docs" | ||
}, | ||
"devDependencies": { | ||
"get-monorepo-packages": "^1.2.0", | ||
"gh-pages": "^2.2.0", | ||
"vuepress": "^1.7.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.