From 65cbad6c1f2a679ac14b7da20e2529e6c2b1fea9 Mon Sep 17 00:00:00 2001 From: PerpetualPossum <140846346+PerpetualPossum@users.noreply.github.com> Date: Sun, 25 Feb 2024 14:48:52 -0600 Subject: [PATCH] makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..49a4847 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +activate: + @echo "Activating virtual environment" + @source venv/bin/activate + +deps: + @echo 'Installing requirements' + @poetry install + +run: + @echo 'Running the application' + @poetry run python beep_booper + +# Personally I use Doppler for managing secrets and configs, so I have a target for that +doppler: + @echo 'Running the application with Doppler' + @poetry run doppler run -- python beep_booper \ No newline at end of file