n8n-nodes-python
Version:
Run Python on n8n.
24 lines • 755 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PythonEnvVars = void 0;
class PythonEnvVars {
constructor() {
this.displayName = 'Python Environment Variables';
this.name = 'pythonEnvVars';
this.properties = [
{
displayName: '.env File Content',
name: 'envFileContent',
typeOptions: {
rows: 10,
},
type: 'string',
default: '',
placeholder: 'HELLO=World!\n',
description: 'The content of the .env file.',
},
];
}
}
exports.PythonEnvVars = PythonEnvVars;
//# sourceMappingURL=PythonEnvVars.credentials.js.map