Class: PoiseApplicationPython::Resources::Django::Provider

Inherits:
Chef::Provider
  • Object
show all
Includes:
AppMixin
Defined in:
lib/poise_application_python/resources/django.rb

Overview

Provider for application_django.

See Also:

Since:

  • 4.0.0

Instance Method Summary collapse

Instance Method Details

#action_deploy

This method returns an undefined value.

deploy action for application_django. Ensure all configuration files are created and other deploy tasks resolved.

Since:

  • 4.0.0



290
291
292
293
294
295
296
297
298
# File 'lib/poise_application_python/resources/django.rb', line 290

def action_deploy
  set_state
  notifying_block do
    write_config
    run_syncdb
    run_migrate
    run_collectstatic
  end
end