Add Python Runner service and documentation

- Introduced a new internal utility service, python-runner, in docker-compose.yml to execute custom Python scripts within the Docker network.
- Added detailed documentation in n8n-installer-developer-guide.md and README.md on how to enable and use the python-runner service.
- Created main.py and requirements.txt files for user-defined Python code and dependencies.
- Updated scripts to include python-runner in the service selection wizard and final report for improved user guidance.
This commit is contained in:
Yury Kossakovsky
2025-08-15 16:35:13 -06:00
parent 7062697b96
commit 7037b203bb
7 changed files with 82 additions and 0 deletions

3
python-runner/main.py Normal file
View File

@@ -0,0 +1,3 @@
print("Python runner is up!")

View File