We are migrating a website to a new engine so we synced and then tryed to deploy with all the content that we synced. We used wagon deploy own_engine -e prod -v.
There are a few issues that came up from this:
Some pages were skipped: there is a few pages that just wouldnt be pushed. Tried many combinations of settings as well as renaming the pages but they were not being pushed.
Global sections content was not pushed for secondary language. So for the main language the global sections content worked properly, but for the second language the sections were just empty.
source 'https://rubygems.org'
gem 'locomotivecms_wagon', git: 'https://github.com/locomotivecms/wagon', ref: '2c4391ae63e68429a7f7f21ae7cee53131e174fb'
gem 'locomotivecms_steam', git: 'https://github.com/locomotivecms/steam', ref: '67a5c77635226c6c8ccf86fda60402b9680fc91f'
group :development do
# Mac OS X
gem 'rb-fsevent', '~> 0.9.1', require: 'rb-fsevent' if RUBY_PLATFORM.include?('darwin')
# Unix
gem 'therubyracer', require: 'v8', platforms: :ruby unless RUBY_PLATFORM.include?('darwin')
gem 'rb-inotify', '~> 0.9', require: 'rb-inotify' if RUBY_PLATFORM.include?('linux')
# Windows
gem 'wdm', '~> 0.1.1', require: 'wdm' if RUBY_PLATFORM =~ /mswin|mingw/i
end
group :misc do
# Add your extra gems here
# gem 'susy', require: 'susy'
# gem 'bourbon', require: 'bourbon'
end
We are migrating a website to a new engine so we synced and then tryed to deploy with all the content that we synced. We used
wagon deploy own_engine -e prod -v
. There are a few issues that came up from this: