X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ca9eda00664d76729ac8ad788bd144d57af2cf9a..cc7dc2d10bf3457a9d6a28931bf96539bfac6491:/roles/dev.rb diff --git a/roles/dev.rb b/roles/dev.rb index cedfc88f5..c192ac182 100644 --- a/roles/dev.rb +++ b/roles/dev.rb @@ -67,6 +67,8 @@ default_attributes( :mhohmann => { :status => :user }, :enelson => { :status => :user }, :gregrs => { :status => :user }, + :stereo => { :status => :user }, + :dmlu => { :status => :user }, :ooc => { :status => :role, :members => [:tomh, :blackadder, :timsc, :ollie] @@ -95,36 +97,41 @@ default_attributes( :max_connections_per_child => 10000 } }, - :apt => { - :sources => ["postgresql"] - }, :dev => { :rails => { :master => { - :repository => "git://git.openstreetmap.org/rails.git", + :repository => "https://git.openstreetmap.org/public/rails.git", :revision => "master", + :cgimap_repository => "https://github.com/zerebubuth/openstreetmap-cgimap.git", + :cgimap_revision => "master", :aliases => ["api06.dev.openstreetmap.org"] }, :tomh => { - :repository => "git://github.com/tomhughes/openstreetmap-website.git", + :repository => "https://github.com/tomhughes/openstreetmap-website.git", :revision => "next" }, - :owl => { - :repository => "git://github.com/ppawel/openstreetmap-website.git", - :revision => "owl-activity-tab" - }, :comments => { - :repository => "git://github.com/ukasiu/openstreetmap-website.git", + :repository => "https://github.com/ukasiu/openstreetmap-website.git", :revision => "comments_list" }, :locale => { - :repository => "git://github.com/tomhughes/openstreetmap-website.git", + :repository => "https://github.com/tomhughes/openstreetmap-website.git", :revision => "locale" + }, + :microcosms => { + :repository => "https://github.com/openbrian/osm-microcosms.git", + :revision => "microcosms" + }, + :upload => { + :repository => "https://git.openstreetmap.org/public/rails.git", + :revision => "master", + :cgimap_repository => "https://github.com/zerebubuth/openstreetmap-cgimap.git", + :cgimap_revision => "feature/bulk_upload" } } }, :postgresql => { - :versions => ["9.1", "9.5"], + :versions => ["12"], :settings => { :defaults => { :shared_buffers => "1GB", @@ -133,11 +140,10 @@ default_attributes( :max_stack_depth => "4MB", :effective_cache_size => "4GB" }, - "9.1" => { - :port => "5433" - }, - "9.5" => { - :port => "5432" + "12" => { + :port => "5432", + :wal_level => "logical", + :max_replication_slots => "1" } } },