Skip to content

Commit b99a028

Browse files
fix: use relative path in generator
1 parent 7be2627 commit b99a028

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This node supports a wide range of web scraping operations across various platfo
3434
To use this node, you'll need a **HasData API Key**.
3535

3636
1. Sign up for an account at [HasData](https://hasdata.com).
37-
2. Go to your [Dashboard](https://dashboard.hasdata.com) to find your API Key.
37+
2. Go to your [Dashboard](https://app.hasdata.com) to find your API Key.
3838
3. In n8n, add a new credential of type **HasData API** and paste your key.
3939

4040
## Compatibility

tools/generate-node-specs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import * as path from 'path';
44
import * as yaml from 'js-yaml';
55
import { generateDescriptionFile } from './templates/description.template';
66

7-
const API_DOCS_PATH = path.resolve('/Users/techvice/workspace/scrapeit-cloud/scrapeit-api-gateway-2/api-docs');
8-
const OUTPUT_PATH = path.resolve('/Users/techvice/workspace/scrapeit-cloud/hasdata-n8n/nodes/HasData/descriptions');
7+
const API_DOCS_PATH = path.resolve('../scrapeit-api-gateway-2/api-docs');
8+
const OUTPUT_PATH = path.resolve('../nodes/HasData/descriptions');
99
const CONFIG_PATH = path.join(__dirname, 'generator-config.json');
1010

1111
interface GeneratorConfig {

0 commit comments

Comments
 (0)