-
Notifications
You must be signed in to change notification settings - Fork 2
Add template generation script #37
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #37 +/- ##
==========================================
- Coverage 91.3% 89.12% -2.19%
==========================================
Files 14 14
Lines 794 809 +15
==========================================
- Hits 725 721 -4
- Misses 69 88 +19
Continue to review full report at Codecov.
|
yuki-mt
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
made one trivial comment, but basically LGTM!
|
@yuki-mt Thank you reviewing! |
| self.APPLICATION_NAME = os.getenv("REKCURD_APPLICATION_NAME") | ||
| self.SERVICE_NAME = os.getenv("REKCURD_SERVICE_NAME") | ||
| self.SERVICE_PORT = int(os.getenv("REKCURD_SERVICE_PORT", "5000")) | ||
| self.SERVICE_PORT = int(os.getenv("REKCURD_SERVICE_PORT", "{}".format(self.__SERVICE_DEFAULT_PORT))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I forgot this one also can be str(self. __SERVICE_DEFAULT_PORT) ...
What is this PR for?
Add
rekcurdcommand line script to generateRekcurdapplication template.This PR includes
dummy_app.pyand usetemplate/app.py-tplfor the unittestingWhat type of PR is it?
Feature
What is the issue?
N/A
How should this be tested?