Skip to content

Commit 03238f4

Browse files
committed
use new url for flow scan publish
1 parent ae93d49 commit 03238f4

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/flowtest-cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you need to use an environment, you can specify it with the `--env` or `-e` o
3838
flow run -f test.flow -e environments/test.env
3939
```
4040

41-
If you need to publish the results of your flow runs for further analysis, you can specify the `-s` option. Request your access key pairs from https://flowtest-ai.vercel.app/ and then run export $FLOWTEST_ACCESS_ID and $FLOWTEST_ACCESS_KEY before publishing:
41+
If you need to publish the results of your flow runs for further analysis, you can specify the `-s` option. Request your access key pairs from https://www.useflowtest.ai/ and then run export $FLOWTEST_ACCESS_ID and $FLOWTEST_ACCESS_KEY before publishing:
4242

4343
```bash
4444
flow run -f test.flow -e environments/test.env -s

packages/flowtest-cli/bin/axiosClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const axios = require('axios');
33
const axiosRetry = require('axios-retry').default;
44

5-
const baseUrl = 'https://flowtest-ai.vercel.app';
5+
const baseUrl = 'https://www.useflowtest.ai';
66

77
const axiosClient = axios.create({
88
baseURL: `${baseUrl}/api`,

packages/flowtest-cli/bin/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const argv = yargs(hideBin(process.argv))
142142
console.log('\n');
143143
console.log(
144144
chalk.yellow(
145-
'Enable flow scans today to get more value our of your APIs. Get your access key pairs at https://flowtest-ai.vercel.app/ \n',
145+
'Enable flow scans today to get more value our of your APIs. Get your access key pairs at https://www.useflowtest.ai/ \n',
146146
),
147147
);
148148
}

src/components/molecules/modals/SettingsModal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const SettingsModal = ({ closeFn = () => null, open = false, initialTab = 0 }) =
4646

4747
const onFormSubmit = async () => {
4848
try {
49-
await addLogSyncConfig(enabled, 'https://flowtest-ai.vercel.app', accessId, accessKey);
49+
await addLogSyncConfig(enabled, 'https://www.useflowtest.ai', accessId, accessKey);
5050
// send the form data as a request
5151
showSuccessFullSubmissionMessage(true);
5252
closeFn();
@@ -125,7 +125,7 @@ const SettingsModal = ({ closeFn = () => null, open = false, initialTab = 0 }) =
125125
<p className='text-lg'>
126126
Scans aim to provide anayltics and observability for your flows. <br />
127127
<a
128-
href='https://flowtest-ai.vercel.app/'
128+
href='https://www.useflowtest.ai/'
129129
target='_blank'
130130
rel='noreferrer'
131131
className='text-blue-500 hover:underline'

0 commit comments

Comments
 (0)