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

.prefectignore 372 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
33
34
35
36
37
  1. # prefect artifacts
  2. .prefectignore
  3. # python artifacts
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. *.egg-info/
  8. *.egg
  9. # Type checking artifacts
  10. .mypy_cache/
  11. .dmypy.json
  12. dmypy.json
  13. .pyre/
  14. # IPython
  15. profile_default/
  16. ipython_config.py
  17. *.ipynb_checkpoints/*
  18. # Environments
  19. .python-version
  20. .env
  21. .venv
  22. env/
  23. venv/
  24. # MacOS
  25. .DS_Store
  26. # Dask
  27. dask-worker-space/
  28. # Editors
  29. .idea/
  30. .vscode/
Tip!

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

Comments

Loading...