Мы используем 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
The word mortgage comes from Old French. What do the roots “mort” and “gage” literally mean?
Options:
A) ⚰️🤝 Death pledge
B) 🏡💸 Life loan
C) ⚰️📜 Death contract
D) 🔄💰 Endless debt
@languagetrivia#etymology
🥖Which word for a “friend” comes from Latin, where it literally meant “with bread”?
A) Acquaintance
B) Associate
C) Companion
D) Comrade
@languagetrivia#etymology
Which animal’s name means “river horse” in Greek?
🦏 Rhinoceros
🦒 Giraffe
🐬 Dolphin
🦛 Hippopotamus
🐘 Elephant
Did you get it right? Yes 😎 | No 🌚
@languagetrivia#etymology
🚢 In the 14th century, ships arriving from plague-affected areas had to wait offshore for 40 days before docking. This practice helped prevent the spread of disease.
👉 Can you guess what word comes from this 40-day period?
💡 Hint:Think of how you’d say “40” in Italian.
Press the button below to check if you got it right.
Did you think of the correct word? Yes 🤓 | No 👀
@languagetrivia#etymology
😳🇯🇵What does the word ‘emoji’ literally mean in Japanese?
A) Emotion icon 😃
B) Picture character 🖼
C) Smiley face 😊
D) Digital letter✉️
@languagetrivia#etymology
A Quick Update 📣
Hi everyone! I wanted to share something with you. To support the growth of this channel and help me keep bringing you fun and educational content, I’ll be placing some ads here from time to time.
I hope you understand—it’s a way for me to keep things running smoothly without asking for direct donations from you. Your support makes this community what it is, and I really appreciate it! 🙏
Thanks for sticking around and being part of this language-loving corner of the internet. Let’s keep learning together! ✨If you’d like to show your support, please tap the ❤️ reaction!
And while we’re talking about ads, here’s a question for you:
Which language does the word 'slogan' come from?
A) French 🇫🇷
B) Scottish Gaelic 🏴
C) Welsh 🏴
D) Latin🏛
Take the quiz below to find out
@languagetrivia#etymology
🧱The name “LEGO” comes from the Danish words “leg godt”. What does “leg godt” mean in English?
A) Build Strong
B) Play Well
C) Stack High
D) Create Together
Take the quiz below to find out
@languagetrivia#etymology
Which word is derived from the Latin term for ‘cow’?
a) Vaccine
b) Pasture
c) Dairy
d) Serum
Take the quiz below to see the explanation
@languagetrivia#etymology
What language does the word “amok,” as in “to run amok,” originate from?
A) Malay
B) Sanskrit
C) Swahili
D) Tagalog
Take the quiz below to find out
@languagetrivia#etymology
💴 What do the names of the currencies yen (Japan), won (South Korea), and yuan (China) mean?
A) Wealth or abundance
B) Circle or round
C) Gold or silver
D) Value or worth
Take the quiz below to find out
@languagetrivia#etymology
Which English word for a celestial body comes from the ancient Greek word meaning ‘wanderer’?
A) Planet
B) Star
C) Comet
D) Moon
Take the quiz below to find out
@languagetrivia#etymology