Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/derekjarvis/general-golem
https://github.com/derekjarvis/general-golem
golem
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/derekjarvis/general-golem
- Owner: DerekJarvis
- Created: 2020-11-24T12:28:52.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T13:21:44.000Z (about 4 years ago)
- Last Synced: 2024-01-25T03:02:57.636Z (almost 1 year 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
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
```