mirror of
https://github.com/internetee/registry.git
synced 2025-08-01 23:42:04 +02:00
Merge branch 'master' of github.com:domify/registry
This commit is contained in:
commit
c359fbb2ea
2 changed files with 10 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
20.01.2015
|
||||
|
||||
* Added dedicated mina cron:setup Now cron is not updated automatically and should update manually.
|
||||
* Added dedicated mina cron:setup and mina cron:clear for manual cron management.
|
||||
Automatic management during deploy removed.
|
||||
* Added mina config for epp: "mina eppst deploy" and "mina epppr deploy"
|
||||
|
||||
19.01.2015
|
||||
|
||||
* Added application-exapmle.yml and removed application.yml from repo, please
|
||||
|
|
|
@ -16,6 +16,7 @@ set :domain, 'registry-st'
|
|||
set :deploy_to, '$HOME/registry'
|
||||
set :repository, 'https://github.com/domify/registry' # dev repo
|
||||
set :branch, 'master'
|
||||
set :rails_env, 'alpha'
|
||||
|
||||
# alpha branch
|
||||
task :epp do
|
||||
|
@ -23,6 +24,7 @@ task :epp do
|
|||
set :deploy_to, '$HOME/epp'
|
||||
set :repository, 'https://github.com/domify/registry' # dev repo
|
||||
set :branch, 'master'
|
||||
set :rails_env, 'alpha'
|
||||
end
|
||||
|
||||
# staging
|
||||
|
@ -31,6 +33,7 @@ task :st do
|
|||
set :deploy_to, '$HOME/registry'
|
||||
set :repository, 'https://github.com/internetee/registry' # production repo
|
||||
set :branch, 'master' # same as production
|
||||
set :rails_env, 'staging'
|
||||
end
|
||||
|
||||
# staging
|
||||
|
@ -39,6 +42,7 @@ task :eppst do
|
|||
set :deploy_to, '$HOME/epp'
|
||||
set :repository, 'https://github.com/internetee/registry' # production repo
|
||||
set :branch, 'master' # same as production
|
||||
set :rails_env, 'staging'
|
||||
end
|
||||
|
||||
# production
|
||||
|
@ -47,6 +51,7 @@ task :pr do
|
|||
set :deploy_to, '$HOME/registry'
|
||||
set :repository, 'https://github.com/internetee/registry' # production repo
|
||||
set :branch, 'master' # same as staging
|
||||
set :rails_env, 'production'
|
||||
end
|
||||
|
||||
# production
|
||||
|
@ -55,6 +60,7 @@ task :epppr do
|
|||
set :deploy_to, '$HOME/epp'
|
||||
set :repository, 'https://github.com/internetee/registry' # production repo
|
||||
set :branch, 'master' # same as staging
|
||||
set :rails_env, 'production'
|
||||
end
|
||||
|
||||
# Manually create these paths in shared/ (eg: shared/config/database.yml) in your server.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue