Heroku configuration

This commit is contained in:
Senad Uka
2019-06-22 06:39:40 +02:00
parent 857324cdc9
commit 50cfbfede5
5 changed files with 15 additions and 2 deletions

8
lib/tasks/start.rake Normal file
View File

@@ -0,0 +1,8 @@
namespace :start do
task :development do
exec 'heroku local -f Procfile.dev'
end
end
desc 'Start development server'
task :start => 'start:development'