[build] update gulp debug logger

This commit is contained in:
2017-12-20 17:53:58 +03:00
parent 69c2b735a0
commit 6345ddcd19
17 changed files with 212 additions and 77 deletions

10
config/deploy/develop.rb Normal file
View File

@@ -0,0 +1,10 @@
role :app, %w{localhost}
role :web, %w{localhost}
role :db, %w{localhost}
user = fetch(:user)
server 'localhost', ssh_options: { port: 22, user: user, forward_agent: true }
set :tmp_dir, "/home/#{user}/tmp"
set :branch, 'master'

View File

@@ -0,0 +1,10 @@
role :app, %w{test.instreamatic.com}
role :web, %w{test.instreamatic.com}
role :db, %w{test.instreamatic.com}
user = fetch(:user)
server 'test.instreamatic.com', ssh_options: { port: 3607, user: user, forward_agent: true }
set :tmp_dir, "/home/#{user}/tmp"
set :branch, 'master'