@n8n-as-code/skills 0.12.1 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-
|
|
2
|
+
"generatedAt": "2026-02-02T12:44:18.972Z",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"sourceUrl": "https://docs.n8n.io/llms.txt",
|
|
5
|
-
"totalPages":
|
|
5
|
+
"totalPages": 1243,
|
|
6
6
|
"statistics": {
|
|
7
7
|
"byCategory": {
|
|
8
8
|
"other": 509,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"code": 38,
|
|
13
13
|
"data": 20,
|
|
14
14
|
"flow-logic": 8,
|
|
15
|
-
"hosting":
|
|
15
|
+
"hosting": 75,
|
|
16
16
|
"integrations": 305,
|
|
17
17
|
"cluster-nodes": 96,
|
|
18
18
|
"trigger-nodes": 107,
|
|
@@ -702,11 +702,10 @@
|
|
|
702
702
|
},
|
|
703
703
|
"hosting": {
|
|
704
704
|
"description": "Self-hosting, deployment, and infrastructure",
|
|
705
|
-
"totalPages":
|
|
705
|
+
"totalPages": 75,
|
|
706
706
|
"pages": [
|
|
707
707
|
"page-0149",
|
|
708
708
|
"page-0150",
|
|
709
|
-
"page-0151",
|
|
710
709
|
"page-0152",
|
|
711
710
|
"page-0153",
|
|
712
711
|
"page-0154",
|
|
@@ -12701,181 +12700,93 @@
|
|
|
12701
12700
|
},
|
|
12702
12701
|
{
|
|
12703
12702
|
"id": "page-0150",
|
|
12704
|
-
"title": "
|
|
12705
|
-
"url": "https://docs.n8n.io/hosting/
|
|
12706
|
-
"urlPath": "hosting/
|
|
12703
|
+
"title": "Community vs Enterprise",
|
|
12704
|
+
"url": "https://docs.n8n.io/hosting/community-edition-features/index.md",
|
|
12705
|
+
"urlPath": "hosting/community-edition-features/index.md",
|
|
12707
12706
|
"category": "hosting",
|
|
12708
12707
|
"subcategory": null,
|
|
12709
12708
|
"nodeName": null,
|
|
12710
12709
|
"nodeType": null,
|
|
12711
12710
|
"content": {
|
|
12712
|
-
"markdown": "# CLI commands for n8n\n\nn8n includes a CLI (command line interface), allowing you to perform actions using the CLI rather than the n8n editor. These include starting workflows, and exporting and importing workflows and credentials.\n\n## Running CLI commands\n\nYou can use CLI commands with self-hosted n8n. Depending on how you choose to install n8n, there are differences in how to run the commands:\n\n- npm: the `n8n` command is directly available. The documentation uses this in the examples below.\n\n- Docker: the `n8n` command is available within your Docker container:\n\n ```\n docker exec -u node -it <n8n-container-name> <n8n-cli-command>\n ```\n\n## Start a workflow\n\nYou can start workflows directly using the CLI.\n\nExecute a saved workflow by its ID:\n\n```\nn8n execute --id <ID>\n```\n\n## Change the active status of a workflow\n\nYou can change the active status of a workflow using the CLI.\n\nRestart required\n\nThese commands operate on your n8n database. If you execute them while n8n is running, the changes don't take effect until you restart n8n.\n\nSet the active status of a workflow by its ID to false:\n\n```\nn8n update:workflow --id=<ID> --active=false\n```\n\nSet the active status of a workflow by its ID to true:\n\n```\nn8n update:workflow --id=<ID> --active=true\n```\n\nSet the active status to false for all the workflows:\n\n```\nn8n update:workflow --all --active=false\n```\n\nSet the active status to true for all the workflows:\n\n```\nn8n update:workflow --all --active=true\n```\n\n## Export entities\n\nYou can export your database entities from n8n using the CLI. This tooling allows you to export all entity types from one database type, such as SQLite, and import them into another database type, such as Postgres.\n\nCommand flags:\n\n| Flag | Description |\n| ----------------------------------- | ---------------------------------------------------------------------------------------------- |\n| --help | Help prompt. |\n| --outputDir | Output directory path |\n| --includeExecutionHistoryDataTables | Include execution history data tables, these are excluded by default as they can be very large |\n\n```\nn8n export:entities --outputDir=./outputs --includeExecutionHistoryDataTables=true\n```\n\n## Export workflows and credentials\n\nYou can export your workflows and credentials from n8n using the CLI.\n\nCommand flags:\n\n| Flag | Description |\n| ----------- | ------------------------------------------------------------------------------------------- |\n| --help | Help prompt. |\n| --all | Exports all workflows/credentials. |\n| --backup | Sets --all --pretty --separate for backups. You can optionally set --output. |\n| --id | The ID of the workflow to export. |\n| --output | Outputs file name or directory if using separate files. |\n| --pretty | Formats the output in an easier to read fashion. |\n| --separate | Exports one file per workflow (useful for versioning). Must set a directory using --output. |\n| --decrypted | Exports the credentials in a plain text format. |\n\n### Workflows\n\nExport all your workflows to the standard output (terminal):\n\n```\nn8n export:workflow --all\n```\n\nExport a workflow by its ID and specify the output file name:\n\n```\nn8n export:workflow --id=<ID> --output=file.json\n```\n\nExport all workflows to a specific directory in a single file:\n\n```\nn8n export:workflow --all --output=backups/latest/file.json\n```\n\nExport all the workflows to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:workflow --backup --output=backups/latest/\n```\n\n### Credentials\n\nExport all your credentials to the standard output (terminal):\n\n```\nn8n export:credentials --all\n```\n\nExport credentials by their ID and specify the output file name:\n\n```\nn8n export:credentials --id=<ID> --output=file.json\n```\n\nExport all credentials to a specific directory in a single file:\n\n```\nn8n export:credentials --all --output=backups/latest/file.json\n```\n\nExport all the credentials to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:credentials --backup --output=backups/latest/\n```\n\nExport all the credentials in plain text format. You can use this to migrate from one installation to another that has a different secret key in the configuration file.\n\nSensitive information\n\nAll sensitive information is visible in the files.\n\n```\nn8n export:credentials --all --decrypted --output=backups/decrypted.json\n```\n\n## Import entities\n\nYou can import entities from a previous `export:entities` command using this command, it allows importing of entities into a database type that differs from the exported database type. Current supported database types include: SQLite, Postgres.\n\nThe database is expected to be empty prior to import, this can be forced with the `--truncateTables` parameter.\n\nCommand flags:\n\n| Flag | Description |\n| ---------------- | -------------------------------------------------- |\n| --help | Help prompt. |\n| --inputDir | Input directory that holds output files for import |\n| --truncateTables | Truncate tables before import |\n\n```\nn8n import:entities --inputDir ./outputs --truncateTables true\n```\n\n## Import workflows and credentials\n\nYou can import your workflows and credentials from n8n using the CLI.\n\nUpdate the IDs\n\nWhen exporting workflows and credentials, n8n also exports their IDs. If you have workflows and credentials with the same IDs in your existing database, they will be overwritten. To avoid this, delete or change the IDs before importing.\n\nAvailable flags:\n\n| Flag | Description |\n| ----------- | ------------------------------------------------------------------------------------------ |\n| --help | Help prompt. |\n| --input | Input file name or directory if you use --separate. |\n| --projectId | Import the workflow or credential to the specified project. Can't be used with `--userId`. |\n| --separate | Imports `*.json` files from directory provided by --input. |\n| --userId | Import the workflow or credential to the specified user. Can't be used with `--projectId`. |\n\nMigrating to SQLite\n\nn8n limits workflow and credential names to 128 characters, but SQLite doesn't enforce size limits.\n\nThis might result in errors like **Data too long for column name** during the import process.\n\nIn this case, you can edit the names from the n8n interface and export again, or edit the JSON file directly before importing.\n\n### Workflows\n\nImport workflows from a specific file:\n\n```\nn8n import:workflow --input=file.json\n```\n\nImport all the workflow files as JSON from the specified directory:\n\n```\nn8n import:workflow --separate --input=backups/latest/\n```\n\n### Credentials\n\nImport credentials from a specific file:\n\n```\nn8n import:credentials --input=file.json\n```\n\nImport all the credentials files as JSON from the specified directory:\n\n```\nn8n import:credentials --separate --input=backups/latest/\n```\n\n## License\n\n### Clear\n\nClear your existing license from n8n's database and reset n8n to default features:\n\n```\nn8n license:clear\n```\n\nIf your license includes [floating entitlements](../../glossary/#entitlement-n8n), running this command will also attempt to release them back to the pool, making them available for other instances.\n\n### Info\n\nDisplay information about the existing license:\n\n```\nn8n license:info\n```\n\n## User management\n\nYou can reset user management using the n8n CLI. This returns user management to its pre-setup state. It removes all user accounts.\n\nUse this if you forget your password, and don't have SMTP set up to do password resets by email.\n\n```\nn8n user-management:reset\n```\n\n### Disable MFA for a user\n\nIf a user loses their recovery codes you can disable MFA for a user with this command. The user will then be able to log back in to set up MFA again.\n\n```\nn8n mfa:disable --email=johndoe@example.com\n```\n\n### Disable LDAP\n\nYou can reset the LDAP settings using the command below.\n\n```\nn8n ldap:reset\n```\n\n## Uninstall community nodes and credentials\n\nYou can manage [community nodes](../../integrations/community-nodes/installation/) using the n8n CLI. For now, you can only uninstall community nodes and credentials, which is useful if a community node causes instability.\n\nCommand flags:\n\n| Flag | Description |\n| ------------ | -------------------------------------------------------------------------------------------------------------------------- |\n| --help | Show CLI help. |\n| --credential | The credential type. Get this value by visiting the node's `<NODE>.credential.ts` file and getting the value of `name`. |\n| --package | Package name of the community node. |\n| --uninstall | Uninstalls the node. |\n| --userId | The ID of the user who owns the credential. On self-hosted, query the database. On cloud, query the API with your API key. |\n\n### Nodes\n\nUninstall a community node by package name:\n\n```\nn8n community-node --uninstall --package <COMMUNITY_NODE_NAME>\n```\n\nFor example, to uninstall the [Evolution API community node](https://www.npmjs.com/package/n8n-nodes-evolution-api), type:\n\n```\nn8n community-node --uninstall --package n8n-nodes-evolution-api\n```\n\n### Credentials\n\nUninstall a community node credential:\n\n```\nn8n community-node --uninstall --credential <CREDENTIAL_TYPE> --userId <ID>\n```\n\nFor example, to uninstall the [Evolution API community node credential](https://www.npmjs.com/package/n8n-nodes-evolution-api), visit the [repository](https://github.com/oriondesign2015/n8n-nodes-evolution-api) and navigate to the [`credentials.ts` file](https://github.com/oriondesign2015/n8n-nodes-evolution-api/blob/main/credentials/EvolutionApi.credentials.ts) to find the `name`:\n\n```\nn8n community-node --uninstall --credential evolutionApi --userId 1234\n```\n\n## Security audit\n\nYou can run a [security audit](../securing/security-audit/) on your n8n instance, to detect common security issues.\n\n```\nn8n audit\n```\n",
|
|
12713
|
-
"excerpt": "#
|
|
12711
|
+
"markdown": "# Community Edition Features\n\nThe community edition includes almost the complete feature set of n8n, except for the features listed here.\n\nThe community edition doesn't include these features:\n\n- [Custom Variables](../../code/variables/)\n- [Environments](../../source-control-environments/)\n- [External secrets](../../external-secrets/)\n- [External storage for binary data](../scaling/external-storage/)\n- [Log streaming](../../log-streaming/) ([Logging](../logging-monitoring/logging/) *is* included)\n- [Multi-main mode](../scaling/queue-mode/#multi-main-setup) ([Queue mode](../scaling/queue-mode/) *is* included)\n- [Projects](../../user-management/rbac/projects/)\n- SSO ([SAML](../securing/set-up-sso/), [LDAP](../../user-management/ldap/))\n- Sharing ([workflows](../../workflows/sharing/), [credentials](../../credentials/credential-sharing/)) (Only the instance owner and the user who creates them can access workflows and credentials)\n- [Version control using Git](../../source-control-environments/)\n\nThese features are available on the Enterprise Cloud plan, including the self-hosted Enterprise edition. Some of these features are available on the Starter and Pro Cloud plan.\n\nSee [pricing](https://n8n.io/pricing/) for reference.\n\n## Registered Community Edition\n\nYou can unlock extra features by registering your n8n community edition. You register with your email and receive a license key.\n\nRegistering unlocks these features for the community edition:\n\n- Folders: Organize your workflows into tidy folders\n- [Debug in editor](../../workflows/executions/debug/): Copy and [pin](../../glossary/#data-pinning-n8n) execution data when working on a workflow\n- [Custom execution data](../../workflows/executions/custom-executions-data/): Save, find, and annotate execution metadata\n\nTo register a new community edition instance, select the option during your initial account creation.\n\nTo register an existing community edition instance:\n\n1. Select the **three dots icon** in the lower-left corner.\n1. Select **Settings** and then **Usage and plan**.\n1. Select **Unlock** to enter your email and then select **Send me a free license key**.\n1. Check your email for the account you entered.\n\nOnce you have a license key, activate it by clicking the button in the license email or by visiting **Options > Settings > Usage and plan** and selecting **Enter activation key**.\n\nOnce activated, your license will not expire. We may change the unlocked features in the future. This will not impact previously unlocked features.\nows and credentials\n\nYou can export your workflows and credentials from n8n using the CLI.\n\nCommand flags:\n\n| Flag | Description |\n| ----------- | ------------------------------------------------------------------------------------------- |\n| --help | Help prompt. |\n| --all | Exports all workflows/credentials. |\n| --backup | Sets --all --pretty --separate for backups. You can optionally set --output. |\n| --id | The ID of the workflow to export. |\n| --output | Outputs file name or directory if using separate files. |\n| --pretty | Formats the output in an easier to read fashion. |\n| --separate | Exports one file per workflow (useful for versioning). Must set a directory using --output. |\n| --decrypted | Exports the credentials in a plain text format. |\n\n### Workflows\n\nExport all your workflows to the standard output (terminal):\n\n```\nn8n export:workflow --all\n```\n\nExport a workflow by its ID and specify the output file name:\n\n```\nn8n export:workflow --id=<ID> --output=file.json\n```\n\nExport all workflows to a specific directory in a single file:\n\n```\nn8n export:workflow --all --output=backups/latest/file.json\n```\n\nExport all the workflows to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:workflow --backup --output=backups/latest/\n```\n\n### Credentials\n\nExport all your credentials to the standard output (terminal):\n\n```\nn8n export:credentials --all\n```\n\nExport credentials by their ID and specify the output file name:\n\n```\nn8n export:credentials --id=<ID> --output=file.json\n```\n\nExport all credentials to a specific directory in a single file:\n\n```\nn8n export:credentials --all --output=backups/latest/file.json\n```\n\nExport all the credentials to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:credentials --backup --output=backups/latest/\n```\n\nExport all the credentials in plain text format. You can use this to migrate from one installation to another that has a different secret key in the configuration file.\n\nSensitive information\n\nAll sensitive information is visible in the files.\n\n```\nn8n export:credentials --all --decrypted --output=backups/decrypted.json\n```\n\n## Import entities\n\nYou can import entities from a previous `export:entities` command using this command, it allows importing of entities into a database type that differs from the exported database type. Current supported database types include: SQLite, Postgres.\n\nThe database is expected to be empty prior to import, this can be forced with the `--truncateTables` parameter.\n\nCommand flags:\n\n| Flag | Description |\n| ---------------- | -------------------------------------------------- |\n| --help | Help prompt. |\n| --inputDir | Input directory that holds output files for import |\n| --truncateTables | Truncate tables before import |\n\n```\nn8n import:entities --inputDir ./outputs --truncateTables true\n```\n\n## Import workflows and credentials\n\nYou can import your workflows and credentials from n8n using the CLI.\n\nUpdate the IDs\n\nWhen exporting workflows and credentials, n8n also exports their IDs. If you have workflows and credentials with the same IDs in your existing database, they will be overwritten. To avoid this, delete or change the IDs before importing.\n\nAvailable flags:\n\n| Flag | Description |\n| ----------- | ------------------------------------------------------------------------------------------ |\n| --help | Help prompt. |\n| --input | Input file name or directory if you use --separate. |\n| --projectId | Import the workflow or credential to the specified project. Can't be used with `--userId`. |\n| --separate | Imports `*.json` files from directory provided by --input. |\n| --userId | Import the workflow or credential to the specified user. Can't be used with `--projectId`. |\n\nMigrating to SQLite\n\nn8n limits workflow and credential names to 128 characters, but SQLite doesn't enforce size limits.\n\nThis might result in errors like **Data too long for column name** during the import process.\n\nIn this case, you can edit the names from the n8n interface and export again, or edit the JSON file directly before importing.\n\n### Workflows\n\nImport workflows from a specific file:\n\n```\nn8n import:workflow --input=file.json\n```\n\nImport all the workflow files as JSON from the specified directory:\n\n```\nn8n import:workflow --separate --input=backups/latest/\n```\n\n### Credentials\n\nImport credentials from a specific file:\n\n```\nn8n import:credentials --input=file.json\n```\n\nImport all the credentials files as JSON from the specified directory:\n\n```\nn8n import:credentials --separate --input=backups/latest/\n```\n\n## License\n\n### Clear\n\nClear your existing license from n8n's database and reset n8n to default features:\n\n```\nn8n license:clear\n```\n\nIf your license includes [floating entitlements](../../glossary/#entitlement-n8n), running this command will also attempt to release them back to the pool, making them available for other instances.\n\n### Info\n\nDisplay information about the existing license:\n\n```\nn8n license:info\n```\n\n## User management\n\nYou can reset user management using the n8n CLI. This returns user management to its pre-setup state. It removes all user accounts.\n\nUse this if you forget your password, and don't have SMTP set up to do password resets by email.\n\n```\nn8n user-management:reset\n```\n\n### Disable MFA for a user\n\nIf a user loses their recovery codes you can disable MFA for a user with this command. The user will then be able to log back in to set up MFA again.\n\n```\nn8n mfa:disable --email=johndoe@example.com\n```\n\n### Disable LDAP\n\nYou can reset the LDAP settings using the command below.\n\n```\nn8n ldap:reset\n```\n\n## Uninstall community nodes and credentials\n\nYou can manage [community nodes](../../integrations/community-nodes/installation/) using the n8n CLI. For now, you can only uninstall community nodes and credentials, which is useful if a community node causes instability.\n\nCommand flags:\n\n| Flag | Description |\n| ------------ | -------------------------------------------------------------------------------------------------------------------------- |\n| --help | Show CLI help. |\n| --credential | The credential type. Get this value by visiting the node's `<NODE>.credential.ts` file and getting the value of `name`. |\n| --package | Package name of the community node. |\n| --uninstall | Uninstalls the node. |\n| --userId | The ID of the user who owns the credential. On self-hosted, query the database. On cloud, query the API with your API key. |\n\n### Nodes\n\nUninstall a community node by package name:\n\n```\nn8n community-node --uninstall --package <COMMUNITY_NODE_NAME>\n```\n\nFor example, to uninstall the [Evolution API community node](https://www.npmjs.com/package/n8n-nodes-evolution-api), type:\n\n```\nn8n community-node --uninstall --package n8n-nodes-evolution-api\n```\n\n### Credentials\n\nUninstall a community node credential:\n\n```\nn8n community-node --uninstall --credential <CREDENTIAL_TYPE> --userId <ID>\n```\n\nFor example, to uninstall the [Evolution API community node credential](https://www.npmjs.com/package/n8n-nodes-evolution-api), visit the [repository](https://github.com/oriondesign2015/n8n-nodes-evolution-api) and navigate to the [`credentials.ts` file](https://github.com/oriondesign2015/n8n-nodes-evolution-api/blob/main/credentials/EvolutionApi.credentials.ts) to find the `name`:\n\n```\nn8n community-node --uninstall --credential evolutionApi --userId 1234\n```\n\n## Security audit\n\nYou can run a [security audit](../securing/security-audit/) on your n8n instance, to detect common security issues.\n\n```\nn8n audit\n```\n",
|
|
12712
|
+
"excerpt": "# Community Edition Features The community edition includes almost the complete feature set of n8n, except for the features listed here. The community edition doesn't include these features: - [Custom Variables](../../code/variables/) - [Environments](../../source-control-environments/) - [External secrets](../../external-secrets/) - [External storage for binary data](../scaling/external-storage/) - [Log streaming](../../log-streaming/) ([Logging](../logging-monitoring/logging/) *is* included...",
|
|
12714
12713
|
"sections": [
|
|
12715
12714
|
{
|
|
12716
|
-
"title": "
|
|
12715
|
+
"title": "Community Edition Features",
|
|
12717
12716
|
"level": 1,
|
|
12718
|
-
"content": "
|
|
12717
|
+
"content": "The community edition includes almost the complete feature set of n8n, except for the features listed here.\n\nThe community edition doesn't include these features:\n\n- [Custom Variables](../../code/variables/)\n- [Environments](../../source-control-environments/)\n- [External secrets](../../external-secrets/)\n- [External storage for binary data](../scaling/external-storage/)\n- [Log streaming](../../log-streaming/) ([Logging](../logging-monitoring/logging/) *is* included)\n- [Multi-main mode](../scaling/queue-mode/#multi-main-setup) ([Queue mode](../scaling/queue-mode/) *is* included)\n- [Projects](../../user-management/rbac/projects/)\n- SSO ([SAML](../securing/set-up-sso/), [LDAP](../../user-management/ldap/))\n- Sharing ([workflows](../../workflows/sharing/), [credentials](../../credentials/credential-sharing/)) (Only the instance owner and the user who creates them can access workflows and credentials)\n- [Version control using Git](../../source-control-environments/)\n\nThese features are ava"
|
|
12719
12718
|
}
|
|
12720
12719
|
]
|
|
12721
12720
|
},
|
|
12722
12721
|
"metadata": {
|
|
12723
12722
|
"keywords": [
|
|
12724
|
-
"commands",
|
|
12725
|
-
"running",
|
|
12726
|
-
"start",
|
|
12727
|
-
"workflow",
|
|
12728
|
-
"change",
|
|
12729
|
-
"active",
|
|
12730
|
-
"status",
|
|
12731
|
-
"export",
|
|
12732
|
-
"entities",
|
|
12733
|
-
"workflows",
|
|
12734
|
-
"credentials",
|
|
12735
|
-
"import",
|
|
12736
|
-
"license",
|
|
12737
|
-
"clear",
|
|
12738
|
-
"info",
|
|
12739
|
-
"user",
|
|
12740
|
-
"management",
|
|
12741
|
-
"disable",
|
|
12742
|
-
"ldap",
|
|
12743
|
-
"uninstall",
|
|
12744
12723
|
"community",
|
|
12745
|
-
"
|
|
12746
|
-
"
|
|
12747
|
-
"
|
|
12724
|
+
"enterprise",
|
|
12725
|
+
"edition",
|
|
12726
|
+
"features",
|
|
12727
|
+
"registered"
|
|
12748
12728
|
],
|
|
12749
12729
|
"useCases": [],
|
|
12750
12730
|
"operations": [],
|
|
12751
|
-
"codeExamples":
|
|
12731
|
+
"codeExamples": 23,
|
|
12752
12732
|
"complexity": "beginner",
|
|
12753
12733
|
"readingTime": "7 min",
|
|
12754
12734
|
"contentLength": 11346,
|
|
12755
12735
|
"relatedPages": []
|
|
12756
12736
|
},
|
|
12757
12737
|
"searchIndex": {
|
|
12758
|
-
"fullText": "cli commands # cli commands for n8n\n\nn8n includes a cli (command line interface), allowing you to perform actions using the cli rather than the n8n editor. these include starting workflows, and exporting and importing workflows and credentials.\n\n## running cli commands\n\nyou can use cli commands with self-hosted n8n. depending on how you choose to install n8n, there are differences in how to run the commands:\n\n- npm: the `n8n` command is directly available. the documentation uses this in the examples below.\n\n- docker: the `n8n` command is available within your docker container:\n\n ```\n docker exec -u node -it <n8n-container-name> <n8n-cli-command>\n ```\n\n## start a workflow\n\nyou can start workflows directly using the cli.\n\nexecute a saved workflow by its id:\n\n```\nn8n execute --id <id>\n```\n\n## change the active status of a workflow\n\nyou can change the active status of a workflow using the cli.\n\nrestart required\n\nthese commands operate on your n8n database. if you execute them while n8n is running, the changes don't take effect until you restart n8n.\n\nset the active status of a workflow by its id to false:\n\n```\nn8n update:workflow --id=<id> --active=false\n```\n\nset the active status of a workflow by its id to true:\n\n```\nn8n update:workflow --id=<id> --active=true\n```\n\nset the active status to false for all the workflows:\n\n```\nn8n update:workflow --all --active=false\n```\n\nset the active status to true for all the workflows:\n\n```\nn8n update:workflow --all --active=true\n```\n\n## export entities\n\nyou can export your database entities from n8n using the cli. this tooling allows you to export all entity types from one database type, such as sqlite, and import them into another database type, such as postgres.\n\ncommand flags:\n\n| flag | description |\n| ----------------------------------- | ---------------------------------------------------------------------------------------------- |\n| --help | help prompt. |\n| --outputdir | output directory path |\n| --includeexecutionhistorydatatables | include execution history data tables, these are excluded by default as they can be very large |\n\n```\nn8n export:entities --outputdir=./outputs --includeexecutionhistorydatatables=true\n```\n\n## export workflows and credentials\n\nyou can export your workflows and credentials from n8n using the cli.\n\ncommand flags:\n\n| flag | description |\n| ----------- | ------------------------------------------------------------------------------------------- |\n| --help | help prompt. |\n| --all | exports all workflows/credentials. |\n| --backup | sets --all --pretty --separate for backups. you can optionally set --output. |\n| --id | the id of the workflow to export. |\n| --output | outputs file name or directory if using separate files. |\n| --pretty | formats the output in an easier to read fashion. |\n| --separate | exports one file per workflow (useful for versioning). must set a directory using --output. |\n| --decrypted | exports the credentials in a plain text format. |\n\n### workflows\n\nexport all your workflows to the standard output (terminal):\n\n```\nn8n export:workflow --all\n```\n\nexport a workflow by its id and specify the output file name:\n\n```\nn8n export:workflow --id=<id> --output=file.json\n```\n\nexport all workflows to a specific directory in a single file:\n\n```\nn8n export:workflow --all --output=backups/latest/file.json\n```\n\nexport all the workflows to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:workflow --backup --output=backups/latest/\n```\n\n### credentials\n\nexport all your credentials to the standard output (terminal):\n\n```\nn8n export:credentials --all\n```\n\nexport credentials by their id and specify the output file name:\n\n```\nn8n export:credentials --id=<id> --output=file.json\n```\n\nexport all credentials to a specific directory in a single file:\n\n```\nn8n export:credentials --all --output=backups/latest/file.json\n```\n\nexport all the credentials to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:credentials --backup --output=backups/latest/\n```\n\nexport all the credentials in plain text format. you can use this to migrate from one installation to another that has a different secret key in the configuration file.\n\nsensitive information\n\nall sensitive information is visible in the files.\n\n```\nn8n export:credentials --all --decrypted --output=backups/decrypted.json\n```\n\n## import entities\n\nyou can import entities from a previous `export:entities` command using this command, it allows importing of entities into a database type that differs from the exported database type. current supported database types include: sqlite, postgres.\n\nthe database is expected to be empty prior to import, this can be forced with the `--truncatetables` parameter.\n\ncommand flags:\n\n| flag | description |\n| ---------------- | -------------------------------------------------- |\n| --help | help prompt. |\n| --inputdir | input directory that holds output files for import |\n| --truncatetables | truncate tables before import |\n\n```\nn8n import:entities --inputdir ./outputs --truncatetables true\n```\n\n## import workflows and credentials\n\nyou can import your workflows and credentials from n8n using the cli.\n\nupdate the ids\n\nwhen exporting workflows and credentials, n8n also exports their ids. if you have workflows and credentials with the same ids in your existing database, they will be overwritten. to avoid this, delete or change the ids before importing.\n\navailable flags:\n\n| flag | description |\n| ----------- | ------------------------------------------------------------------------------------------ |\n| --help | help prompt. |\n| --input | input file name or directory if you use --separate. |\n| --projectid | import the workflow or credential to the specified project. can't be used with `--userid`. |\n| --separate | imports `*.json` files from directory provided by --input. |\n| --userid | import the workflow or credential to the specified user. can't be used with `--projectid`. |\n\nmigrating to sqlite\n\nn8n limits workflow and credential names to 128 characters, but sqlite doesn't enforce size limits.\n\nthis might result in errors like **data too long for column name** during the import process.\n\nin this case, you can edit the names from the n8n interface and export again, or edit the json file directly before importing.\n\n### workflows\n\nimport workflows from a specific file:\n\n```\nn8n import:workflow --input=file.json\n```\n\nimport all the workflow files as json from the specified directory:\n\n```\nn8n import:workflow --separate --input=backups/latest/\n```\n\n### credentials\n\nimport credentials from a specific file:\n\n```\nn8n import:credentials --input=file.json\n```\n\nimport all the credentials files as json from the specified directory:\n\n```\nn8n import:credentials --separate --input=backups/latest/\n```\n\n## license\n\n### clear\n\nclear your existing license from n8n's database and reset n8n to default features:\n\n```\nn8n license:clear\n```\n\nif your license includes [floating entitlements](../../glossary/#entitlement-n8n), running this command will also attempt to release them back to the pool, making them available for other instances.\n\n### info\n\ndisplay information about the existing license:\n\n```\nn8n license:info\n```\n\n## user management\n\nyou can reset user management using the n8n cli. this returns user management to its pre-setup state. it removes all user accounts.\n\nuse this if you forget your password, and don't have smtp set up to do password resets by email.\n\n```\nn8n user-management:reset\n```\n\n### disable mfa for a user\n\nif a user loses their recovery codes you can disable mfa for a user with this command. the user will then be able to log back in to set up mfa again.\n\n```\nn8n mfa:disable --email=johndoe@example.com\n```\n\n### disable ldap\n\nyou can reset the ldap settings using the command below.\n\n```\nn8n ldap:reset\n```\n\n## uninstall community nodes and credentials\n\nyou can manage [community nodes](../../integrations/community-nodes/installation/) using the n8n cli. for now, you can only uninstall community nodes and credentials, which is useful if a community node causes instability.\n\ncommand flags:\n\n| flag | description |\n| ------------ | -------------------------------------------------------------------------------------------------------------------------- |\n| --help | show cli help. |\n| --credential | the credential type. get this value by visiting the node's `<node>.credential.ts` file and getting the value of `name`. |\n| --package | package name of the community node. |\n| --uninstall ",
|
|
12738
|
+
"fullText": "community vs enterprise # community edition features\n\nthe community edition includes almost the complete feature set of n8n, except for the features listed here.\n\nthe community edition doesn't include these features:\n\n- [custom variables](../../code/variables/)\n- [environments](../../source-control-environments/)\n- [external secrets](../../external-secrets/)\n- [external storage for binary data](../scaling/external-storage/)\n- [log streaming](../../log-streaming/) ([logging](../logging-monitoring/logging/) *is* included)\n- [multi-main mode](../scaling/queue-mode/#multi-main-setup) ([queue mode](../scaling/queue-mode/) *is* included)\n- [projects](../../user-management/rbac/projects/)\n- sso ([saml](../securing/set-up-sso/), [ldap](../../user-management/ldap/))\n- sharing ([workflows](../../workflows/sharing/), [credentials](../../credentials/credential-sharing/)) (only the instance owner and the user who creates them can access workflows and credentials)\n- [version control using git](../../source-control-environments/)\n\nthese features are available on the enterprise cloud plan, including the self-hosted enterprise edition. some of these features are available on the starter and pro cloud plan.\n\nsee [pricing](https://n8n.io/pricing/) for reference.\n\n## registered community edition\n\nyou can unlock extra features by registering your n8n community edition. you register with your email and receive a license key.\n\nregistering unlocks these features for the community edition:\n\n- folders: organize your workflows into tidy folders\n- [debug in editor](../../workflows/executions/debug/): copy and [pin](../../glossary/#data-pinning-n8n) execution data when working on a workflow\n- [custom execution data](../../workflows/executions/custom-executions-data/): save, find, and annotate execution metadata\n\nto register a new community edition instance, select the option during your initial account creation.\n\nto register an existing community edition instance:\n\n1. select the **three dots icon** in the lower-left corner.\n1. select **settings** and then **usage and plan**.\n1. select **unlock** to enter your email and then select **send me a free license key**.\n1. check your email for the account you entered.\n\nonce you have a license key, activate it by clicking the button in the license email or by visiting **options > settings > usage and plan** and selecting **enter activation key**.\n\nonce activated, your license will not expire. we may change the unlocked features in the future. this will not impact previously unlocked features.\nows and credentials\n\nyou can export your workflows and credentials from n8n using the cli.\n\ncommand flags:\n\n| flag | description |\n| ----------- | ------------------------------------------------------------------------------------------- |\n| --help | help prompt. |\n| --all | exports all workflows/credentials. |\n| --backup | sets --all --pretty --separate for backups. you can optionally set --output. |\n| --id | the id of the workflow to export. |\n| --output | outputs file name or directory if using separate files. |\n| --pretty | formats the output in an easier to read fashion. |\n| --separate | exports one file per workflow (useful for versioning). must set a directory using --output. |\n| --decrypted | exports the credentials in a plain text format. |\n\n### workflows\n\nexport all your workflows to the standard output (terminal):\n\n```\nn8n export:workflow --all\n```\n\nexport a workflow by its id and specify the output file name:\n\n```\nn8n export:workflow --id=<id> --output=file.json\n```\n\nexport all workflows to a specific directory in a single file:\n\n```\nn8n export:workflow --all --output=backups/latest/file.json\n```\n\nexport all the workflows to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:workflow --backup --output=backups/latest/\n```\n\n### credentials\n\nexport all your credentials to the standard output (terminal):\n\n```\nn8n export:credentials --all\n```\n\nexport credentials by their id and specify the output file name:\n\n```\nn8n export:credentials --id=<id> --output=file.json\n```\n\nexport all credentials to a specific directory in a single file:\n\n```\nn8n export:credentials --all --output=backups/latest/file.json\n```\n\nexport all the credentials to a specific directory using the `--backup` flag (details above):\n\n```\nn8n export:credentials --backup --output=backups/latest/\n```\n\nexport all the credentials in plain text format. you can use this to migrate from one installation to another that has a different secret key in the configuration file.\n\nsensitive information\n\nall sensitive information is visible in the files.\n\n```\nn8n export:credentials --all --decrypted --output=backups/decrypted.json\n```\n\n## import entities\n\nyou can import entities from a previous `export:entities` command using this command, it allows importing of entities into a database type that differs from the exported database type. current supported database types include: sqlite, postgres.\n\nthe database is expected to be empty prior to import, this can be forced with the `--truncatetables` parameter.\n\ncommand flags:\n\n| flag | description |\n| ---------------- | -------------------------------------------------- |\n| --help | help prompt. |\n| --inputdir | input directory that holds output files for import |\n| --truncatetables | truncate tables before import |\n\n```\nn8n import:entities --inputdir ./outputs --truncatetables true\n```\n\n## import workflows and credentials\n\nyou can import your workflows and credentials from n8n using the cli.\n\nupdate the ids\n\nwhen exporting workflows and credentials, n8n also exports their ids. if you have workflows and credentials with the same ids in your existing database, they will be overwritten. to avoid this, delete or change the ids before importing.\n\navailable flags:\n\n| flag | description |\n| ----------- | ------------------------------------------------------------------------------------------ |\n| --help | help prompt. |\n| --input | input file name or directory if you use --separate. |\n| --projectid | import the workflow or credential to the specified project. can't be used with `--userid`. |\n| --separate | imports `*.json` files from directory provided by --input. |\n| --userid | import the workflow or credential to the specified user. can't be used with `--projectid`. |\n\nmigrating to sqlite\n\nn8n limits workflow and credential names to 128 characters, but sqlite doesn't enforce size limits.\n\nthis might result in errors like **data too long for column name** during the import process.\n\nin this case, you can edit the names from the n8n interface and export again, or edit the json file directly before importing.\n\n### workflows\n\nimport workflows from a specific file:\n\n```\nn8n import:workflow --input=file.json\n```\n\nimport all the workflow files as json from the specified directory:\n\n```\nn8n import:workflow --separate --input=backups/latest/\n```\n\n### credentials\n\nimport credentials from a specific file:\n\n```\nn8n import:credentials --input=file.json\n```\n\nimport all the credentials files as json from the specified directory:\n\n```\nn8n import:credentials --separate --input=backups/latest/\n```\n\n## license\n\n### clear\n\nclear your existing license from n8n's database and reset n8n to default features:\n\n```\nn8n license:clear\n```\n\nif your license includes [floating entitlements](../../glossary/#entitlement-n8n), running this command will also attempt to release them back to the pool, making them available for other instances.\n\n### info\n\ndisplay information about the existing license:\n\n```\nn8n license:info\n```\n\n## user management\n\nyou can reset user management using the n8n cli. this returns user management to its pre-setup state. it removes all user accounts.\n\nuse this if you forget your password, and don't have smtp set up to do password resets by email.\n\n```\nn8n user-management:reset\n```\n\n### disable mfa for a user\n\nif a user loses their recovery codes you can disable mfa for a user with this command. the user will then be able to log back in to set up mfa again.\n\n```\nn8n mfa:disable --email=johndoe@example.com\n```\n\n### disable ldap\n\nyou can reset the ldap settings using the command below.\n\n```\nn8n ldap:reset\n```\n\n## uninstall community nodes and credentials\n\nyou can manage [community nodes](../../integrations/community-nodes/installation/) using the n8n cli. for now, you can only uninstall community nodes and credentials, which is useful if a community node causes instability.\n\ncommand flags:\n\n| flag | description |\n| ------------ | -------------------------------------------------------------------------------------------------------------------------- |\n| --help | show cli help. |\n| --credential | the credential type. get this value by visiting the node's `<node>.credential.ts` file and getting the value of `name`. |\n| --package | package name of the community node. |\n| -",
|
|
12759
12739
|
"importantTerms": [
|
|
12760
12740
|
"credentials",
|
|
12741
|
+
"community",
|
|
12761
12742
|
"export",
|
|
12762
|
-
"workflow",
|
|
12763
|
-
"import",
|
|
12764
12743
|
"file",
|
|
12744
|
+
"import",
|
|
12765
12745
|
"workflows",
|
|
12746
|
+
"your",
|
|
12766
12747
|
"output",
|
|
12767
|
-
"
|
|
12748
|
+
"user",
|
|
12749
|
+
"workflow",
|
|
12768
12750
|
"node",
|
|
12769
|
-
"
|
|
12770
|
-
"community",
|
|
12771
|
-
"command",
|
|
12751
|
+
"credential",
|
|
12772
12752
|
"this",
|
|
12773
|
-
"
|
|
12753
|
+
"from",
|
|
12754
|
+
"features",
|
|
12755
|
+
"using",
|
|
12756
|
+
"license",
|
|
12774
12757
|
"directory",
|
|
12775
|
-
"database",
|
|
12776
12758
|
"json",
|
|
12777
|
-
"credential",
|
|
12778
|
-
"user",
|
|
12779
12759
|
"uninstall",
|
|
12760
|
+
"edition",
|
|
12761
|
+
"nodes",
|
|
12780
12762
|
"name",
|
|
12781
|
-
"
|
|
12763
|
+
"command",
|
|
12782
12764
|
"help",
|
|
12783
|
-
"nodes",
|
|
12784
|
-
"entities",
|
|
12785
12765
|
"backups",
|
|
12786
12766
|
"input",
|
|
12787
|
-
"commands",
|
|
12788
12767
|
"with",
|
|
12789
|
-
"flag",
|
|
12790
12768
|
"separate",
|
|
12769
|
+
"database",
|
|
12791
12770
|
"package",
|
|
12792
12771
|
"evolution",
|
|
12793
|
-
"
|
|
12794
|
-
"
|
|
12795
|
-
"
|
|
12772
|
+
"data",
|
|
12773
|
+
"management",
|
|
12774
|
+
"email",
|
|
12775
|
+
"flag",
|
|
12796
12776
|
"files",
|
|
12797
12777
|
"specific",
|
|
12798
12778
|
"latest",
|
|
12799
|
-
"
|
|
12800
|
-
"
|
|
12801
|
-
"
|
|
12802
|
-
"
|
|
12779
|
+
"ldap",
|
|
12780
|
+
"https",
|
|
12781
|
+
"select",
|
|
12782
|
+
"will",
|
|
12803
12783
|
"backup",
|
|
12784
|
+
"entities",
|
|
12804
12785
|
"userid",
|
|
12805
12786
|
"reset",
|
|
12806
|
-
"importing",
|
|
12807
|
-
"available",
|
|
12808
|
-
"them",
|
|
12809
|
-
"false"
|
|
12810
|
-
]
|
|
12811
|
-
}
|
|
12812
|
-
},
|
|
12813
|
-
{
|
|
12814
|
-
"id": "page-0151",
|
|
12815
|
-
"title": "Community vs Enterprise",
|
|
12816
|
-
"url": "https://docs.n8n.io/hosting/community-edition-features/index.md",
|
|
12817
|
-
"urlPath": "hosting/community-edition-features/index.md",
|
|
12818
|
-
"category": "hosting",
|
|
12819
|
-
"subcategory": null,
|
|
12820
|
-
"nodeName": null,
|
|
12821
|
-
"nodeType": null,
|
|
12822
|
-
"content": {
|
|
12823
|
-
"markdown": "# Community Edition Features\n\nThe community edition includes almost the complete feature set of n8n, except for the features listed here.\n\nThe community edition doesn't include these features:\n\n- [Custom Variables](../../code/variables/)\n- [Environments](../../source-control-environments/)\n- [External secrets](../../external-secrets/)\n- [External storage for binary data](../scaling/external-storage/)\n- [Log streaming](../../log-streaming/) ([Logging](../logging-monitoring/logging/) *is* included)\n- [Multi-main mode](../scaling/queue-mode/#multi-main-setup) ([Queue mode](../scaling/queue-mode/) *is* included)\n- [Projects](../../user-management/rbac/projects/)\n- SSO ([SAML](../securing/set-up-sso/), [LDAP](../../user-management/ldap/))\n- Sharing ([workflows](../../workflows/sharing/), [credentials](../../credentials/credential-sharing/)) (Only the instance owner and the user who creates them can access workflows and credentials)\n- [Version control using Git](../../source-control-environments/)\n\nThese features are available on the Enterprise Cloud plan, including the self-hosted Enterprise edition. Some of these features are available on the Starter and Pro Cloud plan.\n\nSee [pricing](https://n8n.io/pricing/) for reference.\n\n## Registered Community Edition\n\nYou can unlock extra features by registering your n8n community edition. You register with your email and receive a license key.\n\nRegistering unlocks these features for the community edition:\n\n- Folders: Organize your workflows into tidy folders\n- [Debug in editor](../../workflows/executions/debug/): Copy and [pin](../../glossary/#data-pinning-n8n) execution data when working on a workflow\n- [Custom execution data](../../workflows/executions/custom-executions-data/): Save, find, and annotate execution metadata\n\nTo register a new community edition instance, select the option during your initial account creation.\n\nTo register an existing community edition instance:\n\n1. Select the **three dots icon** in the lower-left corner.\n1. Select **Settings** and then **Usage and plan**.\n1. Select **Unlock** to enter your email and then select **Send me a free license key**.\n1. Check your email for the account you entered.\n\nOnce you have a license key, activate it by clicking the button in the license email or by visiting **Options > Settings > Usage and plan** and selecting **Enter activation key**.\n\nOnce activated, your license will not expire. We may change the unlocked features in the future. This will not impact previously unlocked features.\n",
|
|
12824
|
-
"excerpt": "# Community Edition Features The community edition includes almost the complete feature set of n8n, except for the features listed here. The community edition doesn't include these features: - [Custom Variables](../../code/variables/) - [Environments](../../source-control-environments/) - [External secrets](../../external-secrets/) - [External storage for binary data](../scaling/external-storage/) - [Log streaming](../../log-streaming/) ([Logging](../logging-monitoring/logging/) *is* included...",
|
|
12825
|
-
"sections": [
|
|
12826
|
-
{
|
|
12827
|
-
"title": "Community Edition Features",
|
|
12828
|
-
"level": 1,
|
|
12829
|
-
"content": "The community edition includes almost the complete feature set of n8n, except for the features listed here.\n\nThe community edition doesn't include these features:\n\n- [Custom Variables](../../code/variables/)\n- [Environments](../../source-control-environments/)\n- [External secrets](../../external-secrets/)\n- [External storage for binary data](../scaling/external-storage/)\n- [Log streaming](../../log-streaming/) ([Logging](../logging-monitoring/logging/) *is* included)\n- [Multi-main mode](../scaling/queue-mode/#multi-main-setup) ([Queue mode](../scaling/queue-mode/) *is* included)\n- [Projects](../../user-management/rbac/projects/)\n- SSO ([SAML](../securing/set-up-sso/), [LDAP](../../user-management/ldap/))\n- Sharing ([workflows](../../workflows/sharing/), [credentials](../../credentials/credential-sharing/)) (Only the instance owner and the user who creates them can access workflows and credentials)\n- [Version control using Git](../../source-control-environments/)\n\nThese features are ava"
|
|
12830
|
-
}
|
|
12831
|
-
]
|
|
12832
|
-
},
|
|
12833
|
-
"metadata": {
|
|
12834
|
-
"keywords": [
|
|
12835
|
-
"community",
|
|
12836
|
-
"enterprise",
|
|
12837
|
-
"edition",
|
|
12838
|
-
"features",
|
|
12839
|
-
"registered"
|
|
12840
|
-
],
|
|
12841
|
-
"useCases": [],
|
|
12842
|
-
"operations": [],
|
|
12843
|
-
"codeExamples": 0,
|
|
12844
|
-
"complexity": "beginner",
|
|
12845
|
-
"readingTime": "2 min",
|
|
12846
|
-
"contentLength": 2527,
|
|
12847
|
-
"relatedPages": []
|
|
12848
|
-
},
|
|
12849
|
-
"searchIndex": {
|
|
12850
|
-
"fullText": "community vs enterprise # community edition features\n\nthe community edition includes almost the complete feature set of n8n, except for the features listed here.\n\nthe community edition doesn't include these features:\n\n- [custom variables](../../code/variables/)\n- [environments](../../source-control-environments/)\n- [external secrets](../../external-secrets/)\n- [external storage for binary data](../scaling/external-storage/)\n- [log streaming](../../log-streaming/) ([logging](../logging-monitoring/logging/) *is* included)\n- [multi-main mode](../scaling/queue-mode/#multi-main-setup) ([queue mode](../scaling/queue-mode/) *is* included)\n- [projects](../../user-management/rbac/projects/)\n- sso ([saml](../securing/set-up-sso/), [ldap](../../user-management/ldap/))\n- sharing ([workflows](../../workflows/sharing/), [credentials](../../credentials/credential-sharing/)) (only the instance owner and the user who creates them can access workflows and credentials)\n- [version control using git](../../source-control-environments/)\n\nthese features are available on the enterprise cloud plan, including the self-hosted enterprise edition. some of these features are available on the starter and pro cloud plan.\n\nsee [pricing](https://n8n.io/pricing/) for reference.\n\n## registered community edition\n\nyou can unlock extra features by registering your n8n community edition. you register with your email and receive a license key.\n\nregistering unlocks these features for the community edition:\n\n- folders: organize your workflows into tidy folders\n- [debug in editor](../../workflows/executions/debug/): copy and [pin](../../glossary/#data-pinning-n8n) execution data when working on a workflow\n- [custom execution data](../../workflows/executions/custom-executions-data/): save, find, and annotate execution metadata\n\nto register a new community edition instance, select the option during your initial account creation.\n\nto register an existing community edition instance:\n\n1. select the **three dots icon** in the lower-left corner.\n1. select **settings** and then **usage and plan**.\n1. select **unlock** to enter your email and then select **send me a free license key**.\n1. check your email for the account you entered.\n\nonce you have a license key, activate it by clicking the button in the license email or by visiting **options > settings > usage and plan** and selecting **enter activation key**.\n\nonce activated, your license will not expire. we may change the unlocked features in the future. this will not impact previously unlocked features.\n community edition features",
|
|
12851
|
-
"importantTerms": [
|
|
12852
|
-
"community",
|
|
12853
|
-
"edition",
|
|
12854
|
-
"features",
|
|
12855
|
-
"your",
|
|
12856
|
-
"workflows",
|
|
12857
|
-
"data",
|
|
12858
|
-
"license",
|
|
12859
|
-
"select",
|
|
12860
12787
|
"these",
|
|
12861
12788
|
"external",
|
|
12862
|
-
"mode"
|
|
12863
|
-
"plan",
|
|
12864
|
-
"email",
|
|
12865
|
-
"enterprise",
|
|
12866
|
-
"custom",
|
|
12867
|
-
"environments",
|
|
12868
|
-
"control",
|
|
12869
|
-
"scaling",
|
|
12870
|
-
"logging",
|
|
12871
|
-
"queue",
|
|
12872
|
-
"user",
|
|
12873
|
-
"sharing",
|
|
12874
|
-
"credentials",
|
|
12875
|
-
"instance",
|
|
12876
|
-
"register",
|
|
12877
|
-
"executions",
|
|
12878
|
-
"execution"
|
|
12789
|
+
"mode"
|
|
12879
12790
|
]
|
|
12880
12791
|
}
|
|
12881
12792
|
},
|
|
@@ -50310,7 +50221,7 @@
|
|
|
50310
50221
|
"nodeName": "git",
|
|
50311
50222
|
"nodeType": "n8n-nodes-base.git",
|
|
50312
50223
|
"content": {
|
|
50313
|
-
"markdown": "# Git\n\n[Git](https://git-scm.com/) is a free and open-source distributed version control system designed to handle everything from small to large projects with speed and efficiency.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/git/).\n\n## Operations\n\n- **Add** a file or folder to commit. Performs a [git add](https://git-scm.com/docs/git-add).\n- **Add Config**: Add configuration property. Performs a [git config](https://git-scm.com/docs/git-config) set or add.\n- **Clone** a repository: Performs a [git clone](https://git-scm.com/docs/git-clone).\n- **Commit** files or folders to git. Performs a [git commit](https://git-scm.com/docs/git-commit).\n- **Fetch** from remote repository. Performs a [git fetch](https://git-scm.com/docs/git-fetch).\n- **List Config**: Return current configuration. Performs a [git config](https://git-scm.com/docs/git-config) query.\n- **Log**: Return git commit history. Performs a [git log](https://git-scm.com/docs/git-log).\n- **Pull** from remote repository: Performs a [git pull](https://git-scm.com/docs/git-pull).\n- **Push** to remote repository: Performs a [git push](https://git-scm.com/docs/git-push).\n- **Push Tags** to remote repository: Performs a [git push --tags](https://git-scm.com/docs/git-push#Documentation/git-push.txt---tags).\n- Return **Status** of current repository: Performs a [git status](https://git-scm.com/docs/git-status).\n- Create a new **Tag**: Performs a [git tag](https://git-scm.com/docs/git-tag).\n- **User Setup**: Set the user.\n\nRefer to the sections below for more details on the parameters and options for each operation.\n\n## Add\n\nConfigure this operation with these parameters:\n\n- **Repository Path**: Enter the local path of the git repository.\n- **Paths to Add**: Enter a comma-separated list of paths of files or folders to add in this field. You can use absolute paths or relative paths from the **Repository Path**.\n\n## Add Config\n\nConfigure this operation with these parameters:\n\n- **Repository Path**: Enter the local path of the git repository.\n- **Key**: Enter the name of the key to set.\n- **Value**: Enter the value of the key to set.\n\n### Add Config options\n\nThe add config operation adds the **Mode** option. Choose whether to **Set** or **Append** the setting in the local config.\n",
|
|
50224
|
+
"markdown": "# Git\n\n[Git](https://git-scm.com/) is a free and open-source distributed version control system designed to handle everything from small to large projects with speed and efficiency.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/git/).\n\n## Operations\n\n- **Add** a file or folder to commit. Performs a [git add](https://git-scm.com/docs/git-add).\n- **Add Config**: Add configuration property. Performs a [git config](https://git-scm.com/docs/git-config) set or add.\n- **Clone** a repository: Performs a [git clone](https://git-scm.com/docs/git-clone).\n- **Commit** files or folders to git. Performs a [git commit](https://git-scm.com/docs/git-commit).\n- **Fetch** from remote repository. Performs a [git fetch](https://git-scm.com/docs/git-fetch).\n- **List Config**: Return current configuration. Performs a [git config](https://git-scm.com/docs/git-config) query.\n- **Log**: Return git commit history. Performs a [git log](https://git-scm.com/docs/git-log).\n- **Pull** from remote repository: Performs a [git pull](https://git-scm.com/docs/git-pull).\n- **Push** to remote repository: Performs a [git push](https://git-scm.com/docs/git-push).\n- **Push Tags** to remote repository: Performs a [git push --tags](https://git-scm.com/docs/git-push#Documentation/git-push.txt---tags).\n- Return **Status** of current repository: Performs a [git status](https://git-scm.com/docs/git-status).\n- **Switch Branch:** Performs a [git switch](https://git-scm.com/docs/git-switch).\n- Create a new **Tag**: Performs a [git tag](https://git-scm.com/docs/git-tag).\n- **User Setup**: Set the user.\n\nRefer to the sections below for more details on the parameters and options for each operation.\n\n## Add\n\nConfigure this operation with these parameters:\n\n- **Repository Path**: Enter the local path of the git repository.\n- **Paths to Add**: Enter a comma-separated list of paths of files or folders to add in this field. You can use absolute paths or relative paths from the **Repository Path**.\n\n## Add Config\n\nConfigure this operation with these parameters:\n\n- **Repository Path**: Enter the local path of the git repository.\n- **Key**: Enter the name of the key to set.\n- **Value**: Enter the value of the key to set.\n\n### Add Config options\n\nThe add config operation adds the **Mode** option. Choose whether to **Set** or **Append** the setting in the local config.\n",
|
|
50314
50225
|
"excerpt": "# Git [Git](https://git-scm.com/) is a free and open-source distributed version control system designed to handle everything from small to large projects with speed and efficiency. Credentials You can find authentication information for this node [here](../../credentials/git/). ## Operations - **Add** a file or folder to commit. Performs a [git add](https://git-scm.com/docs/git-add). - **Add Config**: Add configuration property. Performs a [git config](https://git-scm.com/docs/git-config) s...",
|
|
50315
50226
|
"sections": [
|
|
50316
50227
|
{
|
|
@@ -50333,11 +50244,11 @@
|
|
|
50333
50244
|
"codeExamples": 0,
|
|
50334
50245
|
"complexity": "beginner",
|
|
50335
50246
|
"readingTime": "2 min",
|
|
50336
|
-
"contentLength":
|
|
50247
|
+
"contentLength": 2395,
|
|
50337
50248
|
"relatedPages": []
|
|
50338
50249
|
},
|
|
50339
50250
|
"searchIndex": {
|
|
50340
|
-
"fullText": "git # git\n\n[git](https://git-scm.com/) is a free and open-source distributed version control system designed to handle everything from small to large projects with speed and efficiency.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/git/).\n\n## operations\n\n- **add** a file or folder to commit. performs a [git add](https://git-scm.com/docs/git-add).\n- **add config**: add configuration property. performs a [git config](https://git-scm.com/docs/git-config) set or add.\n- **clone** a repository: performs a [git clone](https://git-scm.com/docs/git-clone).\n- **commit** files or folders to git. performs a [git commit](https://git-scm.com/docs/git-commit).\n- **fetch** from remote repository. performs a [git fetch](https://git-scm.com/docs/git-fetch).\n- **list config**: return current configuration. performs a [git config](https://git-scm.com/docs/git-config) query.\n- **log**: return git commit history. performs a [git log](https://git-scm.com/docs/git-log).\n- **pull** from remote repository: performs a [git pull](https://git-scm.com/docs/git-pull).\n- **push** to remote repository: performs a [git push](https://git-scm.com/docs/git-push).\n- **push tags** to remote repository: performs a [git push --tags](https://git-scm.com/docs/git-push#documentation/git-push.txt---tags).\n- return **status** of current repository: performs a [git status](https://git-scm.com/docs/git-status).\n- create a new **tag**: performs a [git tag](https://git-scm.com/docs/git-tag).\n- **user setup**: set the user.\n\nrefer to the sections below for more details on the parameters and options for each operation.\n\n## add\n\nconfigure this operation with these parameters:\n\n- **repository path**: enter the local path of the git repository.\n- **paths to add**: enter a comma-separated list of paths of files or folders to add in this field. you can use absolute paths or relative paths from the **repository path**.\n\n## add config\n\nconfigure this operation with these parameters:\n\n- **repository path**: enter the local path of the git repository.\n- **key**: enter the name of the key to set.\n- **value**: enter the value of the key to set.\n\n### add config options\n\nthe add config operation adds the **mode** option. choose whether to **set** or **append** the setting in the local config.\n git",
|
|
50251
|
+
"fullText": "git # git\n\n[git](https://git-scm.com/) is a free and open-source distributed version control system designed to handle everything from small to large projects with speed and efficiency.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/git/).\n\n## operations\n\n- **add** a file or folder to commit. performs a [git add](https://git-scm.com/docs/git-add).\n- **add config**: add configuration property. performs a [git config](https://git-scm.com/docs/git-config) set or add.\n- **clone** a repository: performs a [git clone](https://git-scm.com/docs/git-clone).\n- **commit** files or folders to git. performs a [git commit](https://git-scm.com/docs/git-commit).\n- **fetch** from remote repository. performs a [git fetch](https://git-scm.com/docs/git-fetch).\n- **list config**: return current configuration. performs a [git config](https://git-scm.com/docs/git-config) query.\n- **log**: return git commit history. performs a [git log](https://git-scm.com/docs/git-log).\n- **pull** from remote repository: performs a [git pull](https://git-scm.com/docs/git-pull).\n- **push** to remote repository: performs a [git push](https://git-scm.com/docs/git-push).\n- **push tags** to remote repository: performs a [git push --tags](https://git-scm.com/docs/git-push#documentation/git-push.txt---tags).\n- return **status** of current repository: performs a [git status](https://git-scm.com/docs/git-status).\n- **switch branch:** performs a [git switch](https://git-scm.com/docs/git-switch).\n- create a new **tag**: performs a [git tag](https://git-scm.com/docs/git-tag).\n- **user setup**: set the user.\n\nrefer to the sections below for more details on the parameters and options for each operation.\n\n## add\n\nconfigure this operation with these parameters:\n\n- **repository path**: enter the local path of the git repository.\n- **paths to add**: enter a comma-separated list of paths of files or folders to add in this field. you can use absolute paths or relative paths from the **repository path**.\n\n## add config\n\nconfigure this operation with these parameters:\n\n- **repository path**: enter the local path of the git repository.\n- **key**: enter the name of the key to set.\n- **value**: enter the value of the key to set.\n\n### add config options\n\nthe add config operation adds the **mode** option. choose whether to **set** or **append** the setting in the local config.\n git",
|
|
50341
50252
|
"importantTerms": [
|
|
50342
50253
|
"https",
|
|
50343
50254
|
"performs",
|
|
@@ -50360,6 +50271,7 @@
|
|
|
50360
50271
|
"pull",
|
|
50361
50272
|
"tags",
|
|
50362
50273
|
"status",
|
|
50274
|
+
"switch",
|
|
50363
50275
|
"parameters",
|
|
50364
50276
|
"local"
|
|
50365
50277
|
]
|
|
@@ -89544,7 +89456,6 @@
|
|
|
89544
89456
|
"start": [
|
|
89545
89457
|
"page-0001",
|
|
89546
89458
|
"page-0003",
|
|
89547
|
-
"page-0150",
|
|
89548
89459
|
"page-0166",
|
|
89549
89460
|
"page-0193",
|
|
89550
89461
|
"page-0199",
|
|
@@ -89579,7 +89490,7 @@
|
|
|
89579
89490
|
"page-0030",
|
|
89580
89491
|
"page-0038",
|
|
89581
89492
|
"page-0050",
|
|
89582
|
-
"page-
|
|
89493
|
+
"page-0150",
|
|
89583
89494
|
"page-0542",
|
|
89584
89495
|
"page-0690",
|
|
89585
89496
|
"page-1187",
|
|
@@ -90410,7 +90321,6 @@
|
|
|
90410
90321
|
"page-0002",
|
|
90411
90322
|
"page-0003",
|
|
90412
90323
|
"page-0013",
|
|
90413
|
-
"page-0150",
|
|
90414
90324
|
"page-1123",
|
|
90415
90325
|
"page-1144",
|
|
90416
90326
|
"page-1173",
|
|
@@ -90465,7 +90375,6 @@
|
|
|
90465
90375
|
"page-0140",
|
|
90466
90376
|
"page-0145",
|
|
90467
90377
|
"page-0147",
|
|
90468
|
-
"page-0150",
|
|
90469
90378
|
"page-0152",
|
|
90470
90379
|
"page-0163",
|
|
90471
90380
|
"page-0191",
|
|
@@ -90634,7 +90543,6 @@
|
|
|
90634
90543
|
"page-0142",
|
|
90635
90544
|
"page-0143",
|
|
90636
90545
|
"page-0144",
|
|
90637
|
-
"page-0150",
|
|
90638
90546
|
"page-0152",
|
|
90639
90547
|
"page-0161",
|
|
90640
90548
|
"page-0184",
|
|
@@ -91153,7 +91061,6 @@
|
|
|
91153
91061
|
"page-0141",
|
|
91154
91062
|
"page-0144",
|
|
91155
91063
|
"page-0145",
|
|
91156
|
-
"page-0150",
|
|
91157
91064
|
"page-0152",
|
|
91158
91065
|
"page-0192",
|
|
91159
91066
|
"page-0645",
|
|
@@ -91188,7 +91095,6 @@
|
|
|
91188
91095
|
],
|
|
91189
91096
|
"security": [
|
|
91190
91097
|
"page-0003",
|
|
91191
|
-
"page-0150",
|
|
91192
91098
|
"page-0186",
|
|
91193
91099
|
"page-0220",
|
|
91194
91100
|
"page-0293",
|
|
@@ -91484,7 +91390,6 @@
|
|
|
91484
91390
|
"page-0003",
|
|
91485
91391
|
"page-0007",
|
|
91486
91392
|
"page-0138",
|
|
91487
|
-
"page-0150",
|
|
91488
91393
|
"page-0214",
|
|
91489
91394
|
"page-0216",
|
|
91490
91395
|
"page-0223",
|
|
@@ -92405,7 +92310,6 @@
|
|
|
92405
92310
|
"page-0005",
|
|
92406
92311
|
"page-0021",
|
|
92407
92312
|
"page-0135",
|
|
92408
|
-
"page-0150",
|
|
92409
92313
|
"page-0152",
|
|
92410
92314
|
"page-0173",
|
|
92411
92315
|
"page-0220",
|
|
@@ -93923,7 +93827,6 @@
|
|
|
93923
93827
|
"page-0147",
|
|
93924
93828
|
"page-0148",
|
|
93925
93829
|
"page-0150",
|
|
93926
|
-
"page-0151",
|
|
93927
93830
|
"page-0225",
|
|
93928
93831
|
"page-0227",
|
|
93929
93832
|
"page-0841",
|
|
@@ -94061,7 +93964,6 @@
|
|
|
94061
93964
|
"license": [
|
|
94062
93965
|
"page-0010",
|
|
94063
93966
|
"page-0014",
|
|
94064
|
-
"page-0150",
|
|
94065
93967
|
"page-0182",
|
|
94066
93968
|
"page-1187"
|
|
94067
93969
|
],
|
|
@@ -94216,7 +94118,6 @@
|
|
|
94216
94118
|
],
|
|
94217
94119
|
"status": [
|
|
94218
94120
|
"page-0012",
|
|
94219
|
-
"page-0150",
|
|
94220
94121
|
"page-1226"
|
|
94221
94122
|
],
|
|
94222
94123
|
"viewing": [
|
|
@@ -97507,7 +97408,6 @@
|
|
|
97507
97408
|
],
|
|
97508
97409
|
"commands": [
|
|
97509
97410
|
"page-0018",
|
|
97510
|
-
"page-0150",
|
|
97511
97411
|
"page-0694"
|
|
97512
97412
|
],
|
|
97513
97413
|
"credits": [
|
|
@@ -97591,7 +97491,6 @@
|
|
|
97591
97491
|
"page-0019",
|
|
97592
97492
|
"page-0134",
|
|
97593
97493
|
"page-0135",
|
|
97594
|
-
"page-0150",
|
|
97595
97494
|
"page-0152",
|
|
97596
97495
|
"page-0157",
|
|
97597
97496
|
"page-0168",
|
|
@@ -101586,7 +101485,6 @@
|
|
|
101586
101485
|
],
|
|
101587
101486
|
"management": [
|
|
101588
101487
|
"page-0135",
|
|
101589
|
-
"page-0150",
|
|
101590
101488
|
"page-0157",
|
|
101591
101489
|
"page-0190",
|
|
101592
101490
|
"page-0443",
|
|
@@ -101842,79 +101740,16 @@
|
|
|
101842
101740
|
"page-0148",
|
|
101843
101741
|
"page-1171"
|
|
101844
101742
|
],
|
|
101845
|
-
"running": [
|
|
101846
|
-
"page-0150",
|
|
101847
|
-
"page-0214",
|
|
101848
|
-
"page-0509",
|
|
101849
|
-
"page-0516",
|
|
101850
|
-
"page-0613",
|
|
101851
|
-
"page-0621",
|
|
101852
|
-
"page-0625",
|
|
101853
|
-
"page-0650",
|
|
101854
|
-
"page-0675",
|
|
101855
|
-
"page-0689"
|
|
101856
|
-
],
|
|
101857
|
-
"active": [
|
|
101858
|
-
"page-0150",
|
|
101859
|
-
"page-0166",
|
|
101860
|
-
"page-1188"
|
|
101861
|
-
],
|
|
101862
|
-
"export": [
|
|
101863
|
-
"page-0150",
|
|
101864
|
-
"page-1187",
|
|
101865
|
-
"page-1224"
|
|
101866
|
-
],
|
|
101867
|
-
"entities": [
|
|
101868
|
-
"page-0150"
|
|
101869
|
-
],
|
|
101870
|
-
"import": [
|
|
101871
|
-
"page-0150",
|
|
101872
|
-
"page-0696",
|
|
101873
|
-
"page-1187",
|
|
101874
|
-
"page-1224"
|
|
101875
|
-
],
|
|
101876
|
-
"clear": [
|
|
101877
|
-
"page-0150",
|
|
101878
|
-
"page-0507",
|
|
101879
|
-
"page-0544",
|
|
101880
|
-
"page-0547",
|
|
101881
|
-
"page-0551",
|
|
101882
|
-
"page-0698"
|
|
101883
|
-
],
|
|
101884
|
-
"info": [
|
|
101885
|
-
"page-0150",
|
|
101886
|
-
"page-1015",
|
|
101887
|
-
"page-1019"
|
|
101888
|
-
],
|
|
101889
|
-
"ldap": [
|
|
101890
|
-
"page-0150",
|
|
101891
|
-
"page-0658",
|
|
101892
|
-
"page-0836",
|
|
101893
|
-
"page-1187",
|
|
101894
|
-
"page-1207"
|
|
101895
|
-
],
|
|
101896
|
-
"uninstall": [
|
|
101897
|
-
"page-0150",
|
|
101898
|
-
"page-1134",
|
|
101899
|
-
"page-1135",
|
|
101900
|
-
"page-1136"
|
|
101901
|
-
],
|
|
101902
|
-
"audit": [
|
|
101903
|
-
"page-0150",
|
|
101904
|
-
"page-0220",
|
|
101905
|
-
"page-0664",
|
|
101906
|
-
"page-1187"
|
|
101907
|
-
],
|
|
101908
101743
|
"enterprise": [
|
|
101909
|
-
"page-
|
|
101744
|
+
"page-0150",
|
|
101910
101745
|
"page-1176",
|
|
101911
101746
|
"page-1188"
|
|
101912
101747
|
],
|
|
101913
101748
|
"edition": [
|
|
101914
|
-
"page-
|
|
101749
|
+
"page-0150"
|
|
101915
101750
|
],
|
|
101916
101751
|
"registered": [
|
|
101917
|
-
"page-
|
|
101752
|
+
"page-0150"
|
|
101918
101753
|
],
|
|
101919
101754
|
"technology": [
|
|
101920
101755
|
"page-0152"
|
|
@@ -102293,6 +102128,10 @@
|
|
|
102293
102128
|
"jobs": [
|
|
102294
102129
|
"page-0166"
|
|
102295
102130
|
],
|
|
102131
|
+
"active": [
|
|
102132
|
+
"page-0166",
|
|
102133
|
+
"page-1188"
|
|
102134
|
+
],
|
|
102296
102135
|
"being": [
|
|
102297
102136
|
"page-0166"
|
|
102298
102137
|
],
|
|
@@ -103102,6 +102941,17 @@
|
|
|
103102
102941
|
"page-1084",
|
|
103103
102942
|
"page-1187"
|
|
103104
102943
|
],
|
|
102944
|
+
"running": [
|
|
102945
|
+
"page-0214",
|
|
102946
|
+
"page-0509",
|
|
102947
|
+
"page-0516",
|
|
102948
|
+
"page-0613",
|
|
102949
|
+
"page-0621",
|
|
102950
|
+
"page-0625",
|
|
102951
|
+
"page-0650",
|
|
102952
|
+
"page-0675",
|
|
102953
|
+
"page-0689"
|
|
102954
|
+
],
|
|
103105
102955
|
"queues": [
|
|
103106
102956
|
"page-0214"
|
|
103107
102957
|
],
|
|
@@ -103176,6 +103026,11 @@
|
|
|
103176
103026
|
"page-1136",
|
|
103177
103027
|
"page-1188"
|
|
103178
103028
|
],
|
|
103029
|
+
"audit": [
|
|
103030
|
+
"page-0220",
|
|
103031
|
+
"page-0664",
|
|
103032
|
+
"page-1187"
|
|
103033
|
+
],
|
|
103179
103034
|
"report": [
|
|
103180
103035
|
"page-0220",
|
|
103181
103036
|
"page-1130"
|
|
@@ -105250,6 +105105,13 @@
|
|
|
105250
105105
|
"spreadsheet": [
|
|
105251
105106
|
"page-0506"
|
|
105252
105107
|
],
|
|
105108
|
+
"clear": [
|
|
105109
|
+
"page-0507",
|
|
105110
|
+
"page-0544",
|
|
105111
|
+
"page-0547",
|
|
105112
|
+
"page-0551",
|
|
105113
|
+
"page-0698"
|
|
105114
|
+
],
|
|
105253
105115
|
"rows": [
|
|
105254
105116
|
"page-0507",
|
|
105255
105117
|
"page-0509",
|
|
@@ -106369,6 +106231,12 @@
|
|
|
106369
106231
|
"decode": [
|
|
106370
106232
|
"page-0657"
|
|
106371
106233
|
],
|
|
106234
|
+
"ldap": [
|
|
106235
|
+
"page-0658",
|
|
106236
|
+
"page-0836",
|
|
106237
|
+
"page-1187",
|
|
106238
|
+
"page-1207"
|
|
106239
|
+
],
|
|
106372
106240
|
"involving": [
|
|
106373
106241
|
"page-0660"
|
|
106374
106242
|
],
|
|
@@ -106629,6 +106497,11 @@
|
|
|
106629
106497
|
"optimize": [
|
|
106630
106498
|
"page-0696"
|
|
106631
106499
|
],
|
|
106500
|
+
"import": [
|
|
106501
|
+
"page-0696",
|
|
106502
|
+
"page-1187",
|
|
106503
|
+
"page-1224"
|
|
106504
|
+
],
|
|
106632
106505
|
"requesting": [
|
|
106633
106506
|
"page-0697"
|
|
106634
106507
|
],
|
|
@@ -107166,6 +107039,10 @@
|
|
|
107166
107039
|
"page-1154",
|
|
107167
107040
|
"page-1163"
|
|
107168
107041
|
],
|
|
107042
|
+
"info": [
|
|
107043
|
+
"page-1015",
|
|
107044
|
+
"page-1019"
|
|
107045
|
+
],
|
|
107169
107046
|
"poll": [
|
|
107170
107047
|
"page-1025",
|
|
107171
107048
|
"page-1121"
|
|
@@ -107256,6 +107133,11 @@
|
|
|
107256
107133
|
"page-1132",
|
|
107257
107134
|
"page-1214"
|
|
107258
107135
|
],
|
|
107136
|
+
"uninstall": [
|
|
107137
|
+
"page-1134",
|
|
107138
|
+
"page-1135",
|
|
107139
|
+
"page-1136"
|
|
107140
|
+
],
|
|
107259
107141
|
"downgrade": [
|
|
107260
107142
|
"page-1134",
|
|
107261
107143
|
"page-1135"
|
|
@@ -107802,6 +107684,10 @@
|
|
|
107802
107684
|
"page-1187",
|
|
107803
107685
|
"page-1188"
|
|
107804
107686
|
],
|
|
107687
|
+
"export": [
|
|
107688
|
+
"page-1187",
|
|
107689
|
+
"page-1224"
|
|
107690
|
+
],
|
|
107805
107691
|
"sticky": [
|
|
107806
107692
|
"page-1187",
|
|
107807
107693
|
"page-1188",
|
|
@@ -108905,7 +108791,6 @@
|
|
|
108905
108791
|
"hosting": [
|
|
108906
108792
|
"page-0149",
|
|
108907
108793
|
"page-0150",
|
|
108908
|
-
"page-0151",
|
|
108909
108794
|
"page-0152",
|
|
108910
108795
|
"page-0153",
|
|
108911
108796
|
"page-0154",
|