mirror of
https://github.com/autistic-symposium/blockchain-data-engineering-toolkit.git
synced 2025-08-13 08:55:29 -04:00
first commit
This commit is contained in:
commit
bb17a2a56e
29 changed files with 1238 additions and 0 deletions
26
token-scanner-api/Makefile
Normal file
26
token-scanner-api/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
.PHONY: clean
|
||||
clean:
|
||||
@find . -iname '*.py[co]' -delete
|
||||
@find . -iname '__pycache__' -delete
|
||||
@rm -rf '.pytest_cache'
|
||||
@rm -rf dist/
|
||||
@rm -rf build/
|
||||
@rm -rf *.egg-info
|
||||
@rm -rf .tox
|
||||
@rm -rf venv/lib/python*/site-packages/*.egg
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
python3 setup.py install
|
||||
|
||||
.PHONY: install_dep
|
||||
install_deps:
|
||||
pip3 install -r requirements.txt
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
tox -e lint
|
||||
|
||||
.PHONY: local_server
|
||||
local_server:
|
||||
indexer -a
|
Loading…
Add table
Add a link
Reference in a new issue