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 474 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. .ONESHELL:
  2. SHELL := /bin/bash
  3. SRC = $(wildcard nbs/*.ipynb)
  4. all: reformer_fastai docs
  5. reformer_fastai: $(SRC)
  6. nbdev_build_lib
  7. touch reformer_fastai
  8. sync:
  9. nbdev_update_lib
  10. docs_serve: docs
  11. cd docs && bundle exec jekyll serve
  12. docs: $(SRC)
  13. nbdev_build_docs
  14. touch docs
  15. test:
  16. nbdev_test_nbs
  17. release: pypi
  18. nbdev_conda_package
  19. nbdev_bump_version
  20. pypi: dist
  21. twine upload --repository pypi dist/*
  22. dist: clean
  23. python setup.py sdist bdist_wheel
  24. clean:
  25. rm -rf dist
Tip!

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

Comments

Loading...