diff --git a/db/dev_seeds.rb b/db/dev_seeds.rb index 8bc525d8e..c20393d06 100644 --- a/db/dev_seeds.rb +++ b/db/dev_seeds.rb @@ -14,6 +14,13 @@ Setting.create(key: 'max_votes_for_proposal_edit', value: '1000') Setting.create(key: 'proposal_code_prefix', value: 'MAD') Setting.create(key: 'votes_for_proposal_success', value: '100') +Setting.create(key: 'blog_url', value: '/blog') +Setting.create(key: 'url', value: 'http://localhost:3000') +Setting.create(key: 'org_name', value: 'Consul') +Setting.create(key: 'place_name', value: 'City') +Setting.create(key: 'feature.debates', value: "true") +Setting.create(key: 'feature.spending_proposals', value: "true") + puts "Creating Geozones" ('A'..'Z').each{ |i| Geozone.create(name: "District #{i}") }