-
Notifications
You must be signed in to change notification settings - Fork 18
Isolate Template Files #562
Copy link
Copy link
Closed
Labels
difficulty: mediumRequires moderate familiarity with the project and ability to fix logic across a few related module.Requires moderate familiarity with the project and ability to fix logic across a few related module.refactoringChanges that improve code quality without changing external behavior.Changes that improve code quality without changing external behavior.
Milestone
Metadata
Metadata
Assignees
Labels
difficulty: mediumRequires moderate familiarity with the project and ability to fix logic across a few related module.Requires moderate familiarity with the project and ability to fix logic across a few related module.refactoringChanges that improve code quality without changing external behavior.Changes that improve code quality without changing external behavior.
There is a problem where several files that are not directly related to cliboa's processing as a package are mixed in with the core files. These files are presumably intended to be copied during the project initialization process performed by
cliboadmin.For instance, while
cliboa/conf/__init__.pyis a module necessary for cliboa's operation,default_environment.py- located in the same directory - is not referenced anywhere outside ofcliboadmin.We should organize these files and isolate any files unnecessary for package execution under a dedicated directory, such as
cliboa/templates.This is part of the v3.0 major version upgrade plan and belongs to the v3.0 milestone.
All changes will be merged into the
v3.0branch instead of master, andv3.0branch will be merged into master at the time of the release.