https://github.com/DerekJarvis/general-golem
https://github.com/DerekJarvis/general-golem
golem
Last synced: 28 minutes ago
JSON representation
- Host: GitHub
- URL: https://github.com/DerekJarvis/general-golem
- Owner: DerekJarvis
- Created: 2020-11-24T12:28:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T13:21:44.000Z (over 4 years ago)
- Last Synced: 2024-10-30T01:59:00.759Z (6 months ago)
- Topics: golem
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-golem - Golem Requestor Node - Dockerized requestor environment. Pass in the py script, it sets up the daemon and runs it. (Archive / Apps)
README
This is a Dockerized golem requestor environment. It will allow you to execute a script on the golem network from your present working directory ($PWD).
It also adds additional logging for debugging purposes.As an example, the Blender demo script shown in the tutorial (https://handbook.golem.network/requestor-tutorials/flash-tutorial-of-requestor-development) can be run using this Docker image without setting up the environment.
Use:
`docker run --rm -v ${PWD}/:/golem/work derekjarvis/general-golem:v1-latest`Note: Your requester script must be called `requester.py`
Directory before running:
```
.
├── Docker
│ ├── Dockerfile
│ ├── start.sh
│ └── utils.py
├── cubes.blend
└── requester.py
```Directory after running:
```
.
├── Docker
│ ├── Dockerfile
│ ├── start.sh
│ └── utils.py
├── blender-yapapi.log
├── cubes.blend
├── output_0.png
├── output_10.png
├── output_20.png
├── output_30.png
├── output_40.png
├── output_50.png
├── requester.py
└── yagna.log
```