You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
db/config.yml is required in the moment the tasks are loaded.
I tend to use a rake task like the following to setup development environments, without having having the actually used config under version control.
namespace :dev do
desc 'Setup Dev Environment'
task setup: 'db/config.yml'
# one rule to rule them all. Copy any .yml.example to matching .yml
rule '.yml' => '.yml.example' do |task|
cp task.source, task.name
end
end
Sadly StandaloneMigrations::Tasks.load_tasks will fail with a missing db/config.yml, so i can't run my dev:setup tasks, which would create the file.
Would be awesome if the db/config.yml would only be required when the tasks are executed, not just loaded.
The text was updated successfully, but these errors were encountered:
db/config.yml is required in the moment the tasks are loaded.
I tend to use a rake task like the following to setup development environments, without having having the actually used config under version control.
Sadly
StandaloneMigrations::Tasks.load_tasks
will fail with a missing db/config.yml, so i can't run mydev:setup
tasks, which would create the file.Would be awesome if the db/config.yml would only be required when the tasks are executed, not just loaded.
The text was updated successfully, but these errors were encountered: