-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
executable file
·42 lines (29 loc) · 1.06 KB
/
makefile
File metadata and controls
executable file
·42 lines (29 loc) · 1.06 KB
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
38
39
40
41
42
# To launch a command line, type: make [target] [options].
# You need to have make installed on your system.
MAKE_EXECUTOR_DEV=make -f commands/dev.mk
MAKE_EXECUTOR_DEPLOY=make -f commands/prod.mk
MAKE_EXECUTOR_REGISTERY=make -f commands/docker-build.mk
devup:
@${MAKE_EXECUTOR_DEV} devup
devuprm:
@${MAKE_EXECUTOR_DEV} devuprm
devclean:
@${MAKE_EXECUTOR_DEV} devclean
fix_grafana_permissions:
@${MAKE_EXECUTOR_DEV} fix_grafana_permissions
prod_stop:
@${MAKE_EXECUTOR_DEPLOY} prod_stop
prod_build:
@${MAKE_EXECUTOR_DEPLOY} prod_build
prod_up:
@${MAKE_EXECUTOR_DEPLOY} prod_up
prod_clean:
@${MAKE_EXECUTOR_DEPLOY} prod_rm
build_registery_all:
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-airflow
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-binance-scraper
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-client_initdb
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-cryptopanic-scraper
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-scraped_consumer
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-sentiment_analysis
@${MAKE_EXECUTOR_REGISTERY} build_cryptodata-wss