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

Makefile 538 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  1. .PHONY: notebook docs
  2. .EXPORT_ALL_VARIABLES:
  3. install:
  4. @echo "Installing..."
  5. poetry install
  6. poetry run pre-commit install
  7. activate:
  8. @echo "Activating virtual environment"
  9. poetry shell
  10. initialize_git:
  11. git init
  12. pull_data:
  13. poetry run dvc pull
  14. setup: initialize_git install
  15. test:
  16. pytest
  17. docs:
  18. @echo Save the output to docs...
  19. pdoc src -o docs --force --http localhost:8080
  20. ## Delete all compiled Python files
  21. clean:
  22. find . -type f -name "*.py[co]" -delete
  23. find . -type d -name "__pycache__" -delete
  24. rm -rf .pytest_cache
Tip!

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

Comments

Loading...