-
Notifications
You must be signed in to change notification settings - Fork 57
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
Add make run target to Makefile #375
Comments
Thanks for creating the issue.
|
Personally, I think the benefits are:
|
Thanks for your response! While Benefits:
Would love to hear your thoughts on this! Happy to adjust the approach if needed. |
The current Makefile in the repository provides various build, test, and linting targets but does not include a run target to execute the Go application. Adding a make run target would improve the developer experience by providing a simple and standardized way to start the application without manually running go run ..
Proposed Solution:
Modify the Makefile to include the following target:
This will allow developers to start the application with a single command:
make run
Would love to hear your thoughts on this! I'm happy to contribute a PR for this change if approved. 🚀
The text was updated successfully, but these errors were encountered: