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 547 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
  1. .PHONY: notebook
  2. .EXPORT_ALL_VARIABLES:
  3. PREFECT__FLOWS__CHECKPOINTING = true
  4. install:
  5. @echo "Installing..."
  6. poetry install
  7. activate:
  8. @echo "Activating virtual environment"
  9. poetry shell
  10. env:
  11. @echo "Please set the environment variable 'PREFECT__FLOWS__CHECKPOINTING=true' to persist the output of Prefect's flow"
  12. pull_data:
  13. @echo "Pulling data..."
  14. poetry run dvc pull
  15. setup: activate
  16. install_all: install pull_data env
  17. test:
  18. pytest
  19. clean:
  20. @echo "Deleting log files..."
  21. find . -name "*.log" -type f -not -path "./wandb/*" -delete
Tip!

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

Comments

Loading...