https://github.com/puria/puridim
https://github.com/puria/puridim
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/puria/puridim
- Owner: puria
- License: agpl-3.0
- Created: 2021-05-17T21:18:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-17T21:18:54.000Z (over 4 years ago)
- Last Synced: 2025-01-22T11:47:43.832Z (9 months ago)
- Language: Ruby
- Size: 162 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-AGPLv3.txt
Awesome Lists containing this project
README
# puridim
Free Open-Source participatory democracy, citizen participation and open government for cities and organizations
This is the open-source repository for puridim, 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!