Sha256: 83a5f3537e3495f81d6ef7a3c92a36ede03322753de861a5abedc2d711e76ff2

Contents?: true

Size: 445 Bytes

Versions: 8

Compression:

Stored size: 445 Bytes

Contents

desc 'Run by git post-update hook when deployed to a web server'
task :deploy do
	# This task is typiclly run after the site is updated but before the server is restarted.
end

desc 'Restart the application server'
task :restart do
	# This task is run after the deployment task above.
	if passenger_config = `which passenger-config`.chomp!
		sh(passenger_config, 'restart-app', '--ignore-passenger-not-running', File.dirname(__dir__))
	end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
utopia-2.2.0 setup/site/tasks/deploy.rake
utopia-2.1.2 setup/site/tasks/deploy.rake
utopia-2.1.1 setup/site/tasks/deploy.rake
utopia-2.1.0 setup/site/tasks/deploy.rake
utopia-2.0.3 setup/site/tasks/deploy.rake
utopia-2.0.2 setup/site/tasks/deploy.rake
utopia-2.0.1 setup/site/tasks/deploy.rake
utopia-2.0.0 setup/site/tasks/deploy.rake