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

.dockerignore 294 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
  1. # Python
  2. __pycache__
  3. *.pyc
  4. *.pyo
  5. *.pyd
  6. .Python
  7. *.py[cod]
  8. *$py.class
  9. .pytest_cache
  10. .coverage
  11. coverage.xml
  12. .ruff_cache
  13. *.egg-info
  14. dist
  15. build
  16. # Development
  17. .env
  18. .venv
  19. env/
  20. venv/
  21. ENV/
  22. .idea
  23. .vscode
  24. *.swp
  25. *.swo
  26. .DS_Store
  27. # Project specific
  28. *.log
  29. benchmarks.log
  30. runs/
  31. # Dependencies
  32. node_modules/
Tip!

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

Comments

Loading...