Skip to content

Commit

Permalink
makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
PerpetualPossum committed Feb 25, 2024
1 parent 4a4f770 commit 65cbad6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 65cbad6

Please sign in to comment.