-
Notifications
You must be signed in to change notification settings - Fork 54
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
Create settings.yaml if not found in Module Creation #41
Comments
Hi @geanderson-ai! thanks for raising this issue. |
Can confirm, the settings file is getting created in the environment where the project is initialized. However, it does not port to other developers in their own local environments. To locally resolve this (for others who may be facing this issue) add a config:
db_type: <your database type>
is_async: <true | false> |
@ItayTheDar would it make more sense to ship this settings file as part of the application project directory instead of pointing the template to the library path at I suspect it would make joint development significantly easier. |
@JEub I think that this is a bad practice and my bad from the beginning. This was for me a way to maintain context for the cli commands generations but it is too fragile. I need some configuration files that is generated with the application and follows the best practices |
in get_metadata
assert setting_path.exists(), "settings.yaml file not found"
AssertionError: settings.yaml file not found
The text was updated successfully, but these errors were encountered: