From b2432305b58d7e8a47c5440d7cd567d7fad2137f Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Sun, 19 Apr 2026 18:13:51 +0000 Subject: [PATCH] installation --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 58bfb0b..eee73f0 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: dev serve lint fmt build publish deploy logs status help +.PHONY: dev serve lint fmt build publish fly-install deploy logs status help # Development server with auto-reload dev: @@ -26,6 +26,10 @@ build: publish: build uv publish +# Install flyctl +fly-install: + curl -L https://fly.io/install.sh | sh + # Deploy to Fly.io deploy: fly deploy -a chess-pressure @@ -46,7 +50,8 @@ help: @echo " make lint ruff format + check" @echo " make fmt ruff format + auto-fix" @echo " make build build sdist + wheel" - @echo " make publish build + publish to PyPI" - @echo " make deploy deploy to Fly.io" + @echo " make publish build + publish to PyPI" + @echo " make fly-install install flyctl" + @echo " make deploy deploy to Fly.io" @echo " make logs tail production logs" @echo " make status Fly.io app status"