Skip to content

Commit

Permalink
Use new domain cli.dashlane.com (#265)
Browse files Browse the repository at this point in the history
Moving to the main domain name.
  • Loading branch information
Mikescops authored Jun 13, 2024
1 parent aff922f commit 56d0f71
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
![GitHub](https://img.shields.io/github/license/Dashlane/dashlane-cli)
![GitHub package.json version](https://img.shields.io/github/package-json/v/Dashlane/dashlane-cli)
[![Documentation Website](https://img.shields.io/badge/Documentation-Website)
](https://dashlane.github.io/dashlane-cli)
](https://cli.dashlane.com)

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

## Install

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

## How to use

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

## For development

Expand Down
9 changes: 0 additions & 9 deletions documentation/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,9 @@ const withNextra = require('nextra')({
themeConfig: './theme.config.jsx',
});

const isGithubActions = process.env.GITHUB_ACTIONS || false;

let assetPrefix = '';
let basePath = '';

if (isGithubActions) {
const repo = process.env.GITHUB_REPOSITORY.replace(/.*?\//, '');

assetPrefix = `/${repo}/`;
basePath = `/${repo}`;
}

module.exports = {
...withNextra(),
images: {
Expand Down
2 changes: 1 addition & 1 deletion documentation/pages/integrations/github-action.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This CI/CD GitHub Action allows developers to inject their secrets vault from Da
dcli devices register "action-name"
```

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

### Set GitHub Action environment secrets

Expand Down
4 changes: 2 additions & 2 deletions documentation/pages/integrations/siem.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This list is not restrictive, as others destination can be used. You can find th

## Prerequisites

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
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

## How does it work ?

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

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

### Running in Docker

Expand Down
4 changes: 2 additions & 2 deletions documentation/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
const { asPath, defaultLocale, locale } = useRouter();
const { frontMatter } = useConfig();
const url =
'https://dashlane.github.io/dashlane-cli' +
'https://cli.dashlane.com' +
(defaultLocale === locale ? asPath : `/${locale}${asPath}`);

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

0 comments on commit 56d0f71

Please sign in to comment.