Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 015ff29

Browse files
spellcheck
1 parent 48d1ea8 commit 015ff29

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

dictionary.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ subcollections
9797
subcollection
9898
supertest
9999
localhost
100+
renderer
101+
bpy
102+
CUDA
100103
http
101104
BYO
102105
TLDR

docs/guides/python/blender-render.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ We'll also add [bpy](https://docs.blender.org/api/current/info_overview.html#pyt
5858
uv add bpy==4.2.0
5959
```
6060

61-
We'll organise our project structure like so:
61+
We'll organize our project structure like so:
6262

6363
```text
6464
+--src/
@@ -140,7 +140,7 @@ async def get_image(ctx: HttpContext):
140140
Nitric.run()
141141
```
142142

143-
The final route will be for adding a `.blend` file for rendering as well as the render settings for the scene. This will add the contents of the request to a file in the blend bucket. Writing directly to a bucket is limited to 4MB, to avoid this we use an upload URL to increase the limit to 5GB.
143+
The final route will be for adding a `.blend` file for rendering as well as the render settings for the scene. This will add the contents of the request to a file in the blend bucket. Writing directly to a bucket is limited to 4 MB, to avoid this we use an upload URL to increase the limit to 5 GB.
144144

145145
```python title:src/services/main.py
146146
# !collapse(1:23) collapsed
@@ -788,7 +788,7 @@ ENV PATH="/app/.venv/bin:$PATH"
788788
ENTRYPOINT python -u $HANDLER
789789
```
790790

791-
Add two dockerignore files to help optimise the size of the image. These will be `docker/python.dockerignore` and `docker/blender.dockerignore`.
791+
Add two dockerignore files to help optimize the size of the image. These will be `docker/python.dockerignore` and `docker/blender.dockerignore`.
792792

793793
```text
794794
.mypy_cache/

0 commit comments

Comments
 (0)