Skip to content

Commit 7896658

Browse files
committed
Add Russian language
1 parent 64b9919 commit 7896658

38 files changed

+222
-3
lines changed

Dockerfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
FROM ghcr.io/squidfunk/mkdocs-material-insiders as builder
2+
23
RUN pip install mkdocs-macros-plugin
4+
35
COPY . /docs
6+
7+
WORKDIR /docs/en
8+
RUN mkdocs build
9+
10+
WORKDIR /docs/ru
411
RUN mkdocs build
512

613

714
FROM nginx:alpine
8-
COPY --from=builder /docs/site /usr/share/nginx/html
15+
COPY nginx.conf /etc/nginx/conf.d/default.conf
16+
COPY --from=builder /docs/en/site /usr/share/nginx/html/en
17+
COPY --from=builder /docs/ru/site /usr/share/nginx/html/ru
918

1019

1120
EXPOSE 80
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

content/usage/general/flashing-firmware.md renamed to en/content/usage/general/flashing-firmware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dfu-util -a 0 -s 0x08000000 -D full_firmware_latest.bin
7070
!!! warning
7171
If you download the firmware from the link above, you will get a bundled binary, which consists of bootloader and firmware itself.
7272

73-
However, if you're trying to flash the firmware **without bootloader**, you must use `0x08008000` in `-s` parameter of `dfu-util`.
73+
However, if you're trying to flash the firmware **without bootloader**, you must use `0x08008000` in `-s` parameter of `dfu-util`. You don't need this normally.
7474

7575
### Boot back
7676

File renamed without changes.

0 commit comments

Comments
 (0)