Мы используем Makefile думая, что нет альтернатив, что это стандарт и всё такое.
Но make это не запускалка команд, а система сборки. Мы фактически используем его не по назначению.
И на самом деле альтернатива есть! Некоторое время назад я открыл для себя прекрасный инструмент - just. Он решает все проблемы make.
just - это не система сборки как make, это именно исполнитель команд!
Больше никаких Phony Targets и табуляций, привет нормальный синтаксис и передача аргументов!!! 😎
⭐️Что умеет just:
✅ Автодокументирование команд
Не нужно делать отдельную команду с докой, просто добавь комментарий
# команда сборки
build:
...
$ just --list
Available recipes:
build # команда сборки
Команда с именем default запускается по умолчанию если не указано другое, так что я обычно делаю так:
default:
just --list
Теперь просто выполняем just и получаем доку из текущего файла.
✅ Удобная работа с переменными окружения
# загрузить из .env
set dotenv-load
# глобальная переменная
export PYTHONPATH := "./src"
# переменная для команды
test $TESTUNG="true":
pytest
✅ Передача аргументов
build target:
@echo 'Build {{target}}...'
команда запуска
$ just build dev
# Build dev...
✅ Выбор интерпретатора прямо в команде
Пример с инлайн-скриптом на python:
system:
#!/usr/bin/env python3
import platform
print(platform.system())
Эта же функция позволит выполнить скрипт как одну команду вместо перезапуска шела для каждой строки
foo:
#!/usr/bin/env sh
for file in ls .; do
echo $file
done
✅ Выполнение команды в определенной директории. Можно указать как релятивный путь так и абсолютный
[working-directory: 'backend']
build:
docker compose build
Также можно задать рабочую директорию глобально
Там еще много интересного:
- поддержка функций
- автокомплиты и интеграции
- экспрешены
- алиасы команд
- группировка команд
- альтернативы команды под разные ОС
- импорт других just-файлов
- цветной вывод
- ... и другие штуковины!
Так что вперёд - ➡️ читать доку!
Репозиторий: ➡️https://github.com/casey/just
Статья: ➡️https://www.chicks.net/reference/file_formats/just/
ЗЫ. Кажется, на Makefile я уже не вернусь)
#tools
Sono rientrati oggi a #Roma, con un volo diretto da #Amman, i pellegrini italo-americani dell’Opera Romana Pellegrinaggi (Orp) rimasti bloccati a #Gerusalemme a causa degli eventi in corso in Medio Oriente.
Il gruppo, accompagnato da don Giovanni Biallo, si trovava in Terra Santa da sabato 28 febbraio. L’Orp ha garantito tutta l’assistenza necessaria per la sicurezza in loco fino alla riprotezione sui primi voli disponibili, assorbendo totalmente i costi del prolungamento del soggiorno e del rimpatrio da Amman, in costante raccordo con le autorità consolari.
“Esprimiamo tutta la nostra vicinanza e il costante ricordo nella preghiera alle comunità cristiane locali, raggiunte ancora una volta da una situazione di estrema difficoltà ed incertezza - dichiara suor Rebecca Nazzaro, direttrice dell’Orp -. Si auspica che quanto prima le parti coinvolte ascoltino il grido di pace che si eleva da un’umanità incredula e attonita per quello che sta succedendo, ma che non smette di sperare in un futuro di pace e concordia tra i popoli”.
L’Orp segue costantemente l’evolversi della situazione e, per la programmazione dei pellegrinaggi in Medio Oriente, si attiene alle indicazioni delle autorità locali sulla sicurezza e all’operatività delle compagnie aeree.
Updates: #Ethiopian Airlines cancels regional flights to and from the #Middle_East as conflict escalates following #U.S.-#Israel strikes on Iran
• Ethiopian Airlines has announced the cancellation of several flights to and from the Middle East due to the current security situation in the region.
• In a statement, the airline said flights to #Amman, #Tel_Aviv, Dammam, and #Beirut have been cancelled. “We continue to actively monitor developments and will take appropriate measures to ensure the safety and convenience of our passengers and crew,” the airline said.
• The announcement comes as multiple countries across the Middle East closed or restricted their airspace on Saturday, and major global airlines suspended services after a new wave of conflict erupted following a U.S.-Israeli military operation against Iran.
• The United Nations Security Council is set to hold an .....
https://web.facebook.com/AddisstandardEng/posts/pfbid02A3Aigcru3jRVvCNMSc8ooHgbmjNvQ5zY2fYaDd9L8X1qJSXyKFU4wULzZ1vTyw7Kl
#Update: #Ethiopian Airlines extends flight suspensions to several #Middle_East destinations as regional airspace closures persist
Ethiopian Airlines has announced updated suspension of flights to and from multiple Middle East destinations due to ongoing airspace closures across the region, the airline said in a statement.
The cancellations affect services to #Amman (Jordan), #Beirut (Lebanon), #Tel_Aviv (Israel), #Doha (Qatar), #Kuwait City (Kuwait), #Dubai (United Arab Emirates), #Sharjah (United Arab Emirates), #Abu_Dhabi (United Arab Emirates), and #Dammam (Saudi Arabia).
The suspension will remain in effect until further notice.
The airline urged passengers traveling to or from the affected region to regularly check their flight status through its official digital platforms to avoid inconvenience.
Earlier today it was reported that at least one Ethiopian national is among 58 people injured in the United Arab Emirates (UAE) following a series of....
Read more: https://addisstandard.com/?p=55477