Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#620 Black on factories and data_interface

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:hotfix/SG-000-black_on_some_common
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  1. #!/usr/bin/env bash
  2. # Copy relevant files from root to documentation
  3. cp ../CONTRIBUTING.md ../documentation/source/CONTRIBUTING.md
  4. cp ../LICENSE.md ../documentation/source/LICENSE.md
  5. cp ../README.md ../documentation/source/welcome.md
  6. # Editing the links to contain assets/ instead of docs/assets in the urls
  7. sed -i 's/docs\/assets/assets/g' ../documentation/source/welcome.md
  8. # Copying the assets to the documentation
  9. #cd ../documentation && echo "Copying assets..."
  10. # Compiling
  11. # Copying to documentation/ to docs/ for github pages
  12. cd .. && sphinx-build -b html documentation/source docs && \
  13. echo "Copying assets..." && \
  14. cp -r documentation/assets docs/ && \
  15. echo "Successfully generated docs"
  16. touch docs/.nojekyll
  17. # Starting an http server, mimicking github pages root directory (static HTML serving from docs/)
  18. #cd docs && python -m http.server 8080
Discard
Tip!

Press p or to see the previous file or, n or to see the next file