Skip to content

Commit 56d0f71

Browse files
author
Corentin Mors
authored
Use new domain cli.dashlane.com (#265)
Moving to the main domain name.
1 parent aff922f commit 56d0f71

File tree

5 files changed

+9
-18
lines changed

5 files changed

+9
-18
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
![GitHub](https://img.shields.io/github/license/Dashlane/dashlane-cli)
44
![GitHub package.json version](https://img.shields.io/github/package-json/v/Dashlane/dashlane-cli)
55
[![Documentation Website](https://img.shields.io/badge/Documentation-Website)
6-
](https://dashlane.github.io/dashlane-cli)
6+
](https://cli.dashlane.com)
77

88
![Dashlane CLI Demo](./documentation/public/main.png)
99

1010
## Install
1111

12-
Follow our [installation guide](https://dashlane.github.io/dashlane-cli/install) to install the CLI on your computer or server.
12+
Follow our [installation guide](https://cli.dashlane.com/install) to install the CLI on your computer or server.
1313

1414
## How to use
1515

16-
- [for Personal](https://dashlane.github.io/dashlane-cli/personal)
17-
- [for Business](https://dashlane.github.io/dashlane-cli/business)
16+
- [for Personal](https://cli.dashlane.com/personal)
17+
- [for Business](https://cli.dashlane.com/business)
1818

1919
## For development
2020

documentation/next.config.js

-9
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,9 @@ const withNextra = require('nextra')({
33
themeConfig: './theme.config.jsx',
44
});
55

6-
const isGithubActions = process.env.GITHUB_ACTIONS || false;
7-
86
let assetPrefix = '';
97
let basePath = '';
108

11-
if (isGithubActions) {
12-
const repo = process.env.GITHUB_REPOSITORY.replace(/.*?\//, '');
13-
14-
assetPrefix = `/${repo}/`;
15-
basePath = `/${repo}`;
16-
}
17-
189
module.exports = {
1910
...withNextra(),
2011
images: {

documentation/pages/integrations/github-action.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This CI/CD GitHub Action allows developers to inject their secrets vault from Da
1111
dcli devices register "action-name"
1212
```
1313

14-
For more details refer to Dashlane CLI documentation https://dashlane.github.io/dashlane-cli
14+
For more details refer to Dashlane CLI documentation https://cli.dashlane.com/
1515

1616
### Set GitHub Action environment secrets
1717

documentation/pages/integrations/siem.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This list is not restrictive, as others destination can be used. You can find th
1515

1616
## Prerequisites
1717

18-
In order to manage the Dashlane audit logs of your business account, you need to generate the credentials that will be used to pull the logs. The procedure can be found here: https://dashlane.github.io/dashlane-cli/business
18+
In order to manage the Dashlane audit logs of your business account, you need to generate the credentials that will be used to pull the logs. The procedure can be found here: https://cli.dashlane.com/business
1919

2020
## How does it work ?
2121

@@ -55,7 +55,7 @@ This image can run on the platform of your choice. To make a simple test, you ca
5555
`DASHLANE_TEAM_DEVICE_KEYS`
5656

5757
- Secret key to authenticate against Dashlane servers as the team
58-
- [Documentation to generate the credentials](https://dashlane.github.io/dashlane-cli/business)
58+
- [Documentation to generate the credentials](https://cli.dashlane.com/business)
5959

6060
### Running in Docker
6161

documentation/theme.config.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default {
2727
const { asPath, defaultLocale, locale } = useRouter();
2828
const { frontMatter } = useConfig();
2929
const url =
30-
'https://dashlane.github.io/dashlane-cli' +
30+
'https://cli.dashlane.com' +
3131
(defaultLocale === locale ? asPath : `/${locale}${asPath}`);
3232

3333
return (
@@ -38,7 +38,7 @@ export default {
3838
property="og:description"
3939
content={frontMatter.description || 'Learn how to access your Dashlane vault and API endpoints from the command line.'}
4040
/>
41-
<link rel="icon" href="/dashlane-cli/favicon.png" type="image/png" />
41+
<link rel="icon" href="favicon.png" type="image/png" />
4242
</>
4343
);
4444
}

0 commit comments

Comments
 (0)