X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/2e585bb2d0bfee583ef8dc1d6548cc7ee95f3052..c539edca301fde6201f8d7f53e5310f1219789f1:/roles/dev.rb diff --git a/roles/dev.rb b/roles/dev.rb index 6f49fae6d..672c5e022 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,40 +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" }, - :moderation => { - :repository => "git://github.com/sbagroy986/openstreetmap-website.git", - :revision => "moderation_queue" - }, :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 => ["9.1", "12"], :settings => { :defaults => { :shared_buffers => "1GB", @@ -138,10 +141,13 @@ default_attributes( :effective_cache_size => "4GB" }, "9.1" => { - :port => "5433" + :port => "5433", + :ssl => "false" }, - "9.5" => { - :port => "5432" + "12" => { + :port => "5432", + :wal_level => "logical", + :max_replication_slots => "1" } } },