|
1 | 1 | SHELL := /bin/bash |
2 | 2 |
|
3 | | -.PHONY: build build-nc sh run run-bonds run-crypto run-commodities run-indices run-forex list-strategies lock lock-update discover-crypto manifest-status dashboard |
| 3 | +.PHONY: build build-nc sh run run-stocks-dividend run-stocks-large-cap-value run-stocks-large-cap-growth run-stocks-mid-cap run-stocks-small-cap run-stocks-international run-stocks-emerging run-bonds-global run-bonds-high-yield run-bonds-corporate run-bonds-municipal run-bonds-tips run-bonds-us-treasuries run-crypto run-commodities list-strategies lock lock-update discover-crypto manifest-status dashboard |
4 | 4 |
|
5 | 5 | build: |
6 | 6 | docker-compose build |
|
14 | 14 | run: |
15 | 15 | docker-compose run --rm app bash -lc "poetry install && poetry run python -m src.main run --config config/example.yaml" |
16 | 16 |
|
17 | | -run-bonds: |
18 | | - docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_majors.yaml" |
| 17 | +run-stocks-dividend: |
| 18 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-dividend-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_dividend.yaml" |
19 | 19 |
|
20 | | -run-crypto: |
21 | | - docker-compose run --rm app bash -lc "poetry install && RUN_ID=crypto-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/crypto_majors.yaml" |
| 20 | +run-stocks-large-cap-value: |
| 21 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-large-cap-value-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_large_cap_value.yaml" |
22 | 22 |
|
23 | | -run-commodities: |
24 | | - docker-compose run --rm app bash -lc "poetry install && RUN_ID=commodities-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/commodities_majors.yaml" |
| 23 | +run-stocks-large-cap-growth: |
| 24 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-large-cap-growth-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_large_cap_growth.yaml" |
| 25 | + |
| 26 | +run-stocks-mid-cap: |
| 27 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-mid-cap-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_mid_cap.yaml" |
| 28 | + |
| 29 | +run-stocks-small-cap: |
| 30 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-small-cap-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_small_cap.yaml" |
| 31 | + |
| 32 | +run-stocks-international: |
| 33 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-international-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_international.yaml" |
| 34 | + |
| 35 | +run-stocks-emerging: |
| 36 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=stocks-emerging-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/stocks_emerging.yaml" |
| 37 | + |
| 38 | +run-bonds-global: |
| 39 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-global-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_global.yaml" |
25 | 40 |
|
26 | | -run-indices: |
27 | | - docker-compose run --rm app bash -lc "poetry install && RUN_ID=indices-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/indices_majors.yaml" |
| 41 | +run-bonds-high-yield: |
| 42 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-high-yield-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_high_yield.yaml" |
28 | 43 |
|
29 | | -run-forex: |
30 | | - docker-compose run --rm app bash -lc "poetry install && RUN_ID=forex-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/forex_majors.yaml" |
| 44 | +run-bonds-corporate: |
| 45 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-corporate-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_corporate.yaml" |
| 46 | + |
| 47 | +run-bonds-municipal: |
| 48 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-municipal-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_municipal.yaml" |
| 49 | + |
| 50 | +run-bonds-tips: |
| 51 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-tips-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_tips.yaml" |
| 52 | + |
| 53 | +run-bonds-us-treasuries: |
| 54 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=bonds-us-treasuries-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/bonds_us_treasuries.yaml" |
| 55 | + |
| 56 | +run-crypto: |
| 57 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=crypto-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/crypto.yaml" |
| 58 | + |
| 59 | +run-commodities: |
| 60 | + docker-compose run --rm app bash -lc "poetry install && RUN_ID=commodities-$(shell date +%Y%m%d%H%M) poetry run python -m src.main run --config config/collections/commodities.yaml" |
31 | 61 |
|
32 | 62 | list-strategies: |
33 | 63 | docker-compose run --rm app bash -lc "poetry install && poetry run python -m src.main list-strategies --strategies-path /ext/strategies" |
|
0 commit comments