https://github.com/populatetools/decidim-populate-dev
https://github.com/populatetools/decidim-populate-dev
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/populatetools/decidim-populate-dev
- Owner: PopulateTools
- License: agpl-3.0
- Created: 2019-11-18T14:27:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-29T19:11:24.000Z (8 months ago)
- Last Synced: 2025-07-29T21:36:54.843Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 8.31 MB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-AGPLv3.txt
Awesome Lists containing this project
README
# decidim_greenpeace
Free Open-Source participatory democracy, citizen participation and open government for cities and organizations
This is the open-source repository for decidim_greenpeace, based on [Decidim](https://github.com/decidim/decidim).
## Setting up the application
You will need to do some steps before having the app working properly once you've deployed it:
1. Open a Rails console in the server: `bundle exec rails console`
2. Create a System Admin user:
```ruby
user = Decidim::System::Admin.new(email: , password: , password_confirmation: )
user.save!
```
3. Visit `/system` and login with your system admin credentials
4. Create a new organization. Check the locales you want to use for that organization, and select a default locale.
5. Set the correct default host for the organization, otherwise the app will not work properly. Note that you need to include any subdomain you might be using.
6. Fill the rest of the form and submit it.
You're good to go!