commit cea58404ddca8b53d71f92d368a4c447dfdb4ce5 Author: Simple_Not <44047940+moonbaseDelta@users.noreply.github.com> Date: Sat Jul 15 16:44:27 2023 +1000 погнали diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..7eba051 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ +--- +kind: pipeline +type: exec +name: default + +platform: + os: linux + arch: amd64 + + +clone: + # убрано так как сейчас не тестим ничего предварительно а сразу тянем в директорию + disable: true + +steps: +- name: pull into the folduh + commands: + - cd /usr/share/$DRONE_REPO_NAME + - git pull origin master +- name: docker-compose-rebuild + commands: + - cd /usr/share/$DRONE_REPO_NAME + - docker compose up -d --build \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d36f1c8 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +asdf + + + +https://rust-lang.github.io/mdBook/guide/creating.html \ No newline at end of file diff --git a/book/book.toml b/book/book.toml new file mode 100644 index 0000000..e5aebe9 --- /dev/null +++ b/book/book.toml @@ -0,0 +1,6 @@ +[book] +authors = [] +language = "ru" +multilingual = false +src = "src" +title = "Nihil Unbound" diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md new file mode 100644 index 0000000..604825e --- /dev/null +++ b/book/src/SUMMARY.md @@ -0,0 +1,10 @@ +# Summary + + + +[Introduction](README.md) + +![оригинал](orig/ray-brassier-nihil-unbound-enlightenment-and-extinction.pdf) + + +- [Chapter 1](./chapter_1.md) diff --git a/book/src/chapter_1.md b/book/src/chapter_1.md new file mode 100644 index 0000000..3a78b5a --- /dev/null +++ b/book/src/chapter_1.md @@ -0,0 +1,4 @@ +# Тут начинается текст + + +фыва \ No newline at end of file diff --git a/book/src/orig/ray-brassier-nihil-unbound-enlightenment-and-extinction.pdf b/book/src/orig/ray-brassier-nihil-unbound-enlightenment-and-extinction.pdf new file mode 100644 index 0000000..be366fe Binary files /dev/null and b/book/src/orig/ray-brassier-nihil-unbound-enlightenment-and-extinction.pdf differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7a10046 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,20 @@ + + +services: + mdbook: + container_name: test-mdbook + # https://hub.docker.com/r/peaceiris/mdbook/tags + image: peaceiris/mdbook:0.4.31-rust +# stdin_open: true +# tty: true + ports: + - "127.0.0.1:5100:3000" + #- 5101:3001 + volumes: + - ./book:/book + command: + # - init +# - echo "y" + - serve + - --hostname + - '0.0.0.0'