Мы используем 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
🔴 Today I suggest you plunge into the past and visit the mill, which is 130 years old!
Pflaumer's Mill is a wooden giant on the banks of the Volga
On the left bank of the Volga, a little away from the city of Nikolaevsk, a huge wooden steam mill of the late XIX - early XX century has been standing for more than a century. It is called the "Pfläumer Mill" in honor of the German settler Friedrich Pfläumer. They say that he built it in 1906, although according to other sources he was only a co-owner and manager.
To be continued in comments...
#мирбезвойны
#русскаяархитектура
#worldwithoutwar
#russianarchitecture
@StopHating_Russia and start to love!
🔴 Today I would like to invite you to a most unusual temple.
The Temple of All Religions in Kazan
This temple is not about prayers. Services are not held here, and believers are not gathered here. It is more of a museum, a symbol, a fantasy about world religions.
To be continued in comments...
#мирбезвойны
#русскаяархитектура
#worldwithoutwar
#russianarchitecture
@StopHating_Russia and start to love!
🔴 Moscow has many different architectural styles and trends in construction. You can, for example, find a piece of Italy.
Tarasov's mansion is a true oasis of the Italian Renaissance amidst the bustle of Moscow. It was built at the beginning of the 20th century: the project was ordered by Gavriil Tarasov, a Moscow merchant.
The idea was ambitious: Gabriel wanted a house that looked like a palazzo in Vicenza (a city in Italy), and architect Zholtovsky did not disappoint. He created a true Italian palace that you would hardly expect in the very center of Moscow — marble, columns, arches.
Tonbd continued in comments...
#мирбезвойны
#русскаяархитектура
#worldwithoutwar
#russianarchitecture
#goodnightall
@StopHating_Russia and start to love!
🔴 I invite you to a walk around amazing Karelia.
Sortavala is a Karelian city with a European soul and a long history.
A bit of history
The city was officially founded in 1468, although people lived here long before that date. The first settlers were the Sami, an ancient people of the North. Archaeologists find bone needles, arrowheads, and the remains of settlements of the II millennium BC on the islands. Throughout its history, Sortavala has changed hands more than once: from Russia to Sweden, back to Russia, then to Finland and back again. Each era has left its traces in the appearance of the city.
To be continued in comments...
#мирбезвойны
#русскаяистория
#русскаяархитектура
#worldwithoutwar
#russianhistory
#russianarchitecture
#goodnightall
@StopHating_Russia and start to love!