Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run command not defined in makefile #69

Open
delterr opened this issue Sep 11, 2024 · 1 comment
Open

run command not defined in makefile #69

delterr opened this issue Sep 11, 2024 · 1 comment

Comments

@delterr
Copy link

delterr commented Sep 11, 2024

Summary

Application doesn't run after executing make run

Steps to Reproduce

execute make run in the terminal

Expected Behavior

Supposed to run the application

Actual Behavior

returns error make: *** No rule to make target `run'. Stop.
There isn't a rule in the makefile that determines what commands should execute after make run is executed

@evisos-ons
Copy link

evisos-ons commented Sep 11, 2024

Missing Code in Makefile

As the README states that make run is a viable command, then it should be included within the Makefile with either a:

Code to add to Makefile

.PHONY: run
run:
 poetry run python <project_template_module(A) | main.py(B)>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants