All Projects → airesis → Airesis

airesis / Airesis

Licence: agpl-3.0
The Social Network for eDemocracy

Programming Languages

ruby
36898 projects - #4 most used programming language
proposal
26 projects

Projects that are alternatives of or similar to Airesis

Yii2 Podium
Yii 2 forum module project
Stars: ✭ 172 (+48.28%)
Mutual labels:  forum, discussion
dillo
Free and open web platform created to support crowd-driven content.
Stars: ✭ 62 (-46.55%)
Mutual labels:  discussion, forum
Symphony
🎶 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。
Stars: ✭ 13,080 (+11175.86%)
Mutual labels:  forum, discussion
ConsiderIt
For deliberation and opinion visualization
Stars: ✭ 62 (-46.55%)
Mutual labels:  discussion, forum
Chatter
Chatter is a Simple Laravel Forum Package
Stars: ✭ 846 (+629.31%)
Mutual labels:  forum, discussion
Starfire
🌟 一个分布式的内容分享讨论社区,星星之火可以燎原。
Stars: ✭ 130 (+12.07%)
Mutual labels:  forum, discussion
sic
link aggregator community organised by tags (with no javascript)
Stars: ✭ 82 (-29.31%)
Mutual labels:  discussion, forum
Elkarte
ElkArte Forum. A free, open source, PHP-based discussion forum.
Stars: ✭ 128 (+10.34%)
Mutual labels:  forum, discussion
Icarus
🕊️ An opensource community/forum project write with python3 aiohttp and vue.js. 一个开源的社区程序,临时测试站:https://t.myrpg.cn
Stars: ✭ 644 (+455.17%)
Mutual labels:  forum, discussion
Forum
🍺 Portando discussões feitas em grupos (Facebook, Google Groups, Slack, Disqus) para o GitHub Discussions
Stars: ✭ 3,868 (+3234.48%)
Mutual labels:  forum, discussion
Flowchat
A reddit alternative featuring communities and live-updating threaded conversations.
Stars: ✭ 296 (+155.17%)
Mutual labels:  forum, discussion
Voten
The code that powers voten.co
Stars: ✭ 1,215 (+947.41%)
Mutual labels:  forum, social-network
Symphony
🎶 一款用 Java 实现的现代化社区(论坛/问答/BBS/社交网络/博客)系统平台。A modern community (forum/Q&A/BBS/SNS/blog) system platform implemented in Java. https://ld246.com
Stars: ✭ 883 (+661.21%)
Mutual labels:  forum, discussion
Phphub Ios
PHPHub for iOS is the universal iPhone and iPad application for PHPHub
Stars: ✭ 1,223 (+954.31%)
Mutual labels:  forum, social-network
Socialnetwork
Laravel and Vue.JS powerd social network
Stars: ✭ 101 (-12.93%)
Mutual labels:  social-network
Unitylibrary
📚 Library of all kind of scripts, snippets & shaders for Unity
Stars: ✭ 1,968 (+1596.55%)
Mutual labels:  forum
Dandelion
a diaspora* client for Android
Stars: ✭ 100 (-13.79%)
Mutual labels:  social-network
Esteem Surfer
Ecency desktop formerly known as Esteem Surfer - reimagined desktop social wallet, contribute and get rewarded (for Windows, Mac, Linux)
Stars: ✭ 100 (-13.79%)
Mutual labels:  social-network
Sugar
Totally sweet Ruby on Rails-based forum software
Stars: ✭ 114 (-1.72%)
Mutual labels:  forum
Mixedfeed
A PHP library to rule social-feeds, to entangle them with magic, a PHP library to gather them and bind them in darkness
Stars: ✭ 105 (-9.48%)
Mutual labels:  social-network

Airesis - The Social Network for E-Democracy

Build Status

The first open source web application for eDemocracy

Summary

This innovative tool for participatory democracy puts the citizens at the center, as the main actors, and finally allows them to be active in the decisions of their territory.

Users can view their own territory and listen to the voices and messages that come directly from other citizens or groups present.

The groups will be able to get in touch with the citizens, support the proposals and create events in the area.

Everything fully integrated with all major social networks and the ability to communicate through e-mail the proposals.

Users who wish to participate in the activities of groups can also sign up and follow the discussions on the forums.

But what really makes Airesis a platform for edemocracy? The first thing is a totally innovative mechanism for the construction of proposals, where finally the contributions and the minds of the users will be able to merge and make it possible to write proposals in a shared way.

Airesis allows users to have a better ranking on the basis of how they work and contribute to the proposals but at the same time allows a true comparison on the topics and content while maintaining the anonymity of users during the construction of the proposals.

Each time a user participates in a proposal will be overshadowed his real name, so as to ensure that the discussions will focus on the texts and the value of what is written rather than who wrote it.

A system for evaluating the contributions and proposals totally new will automatically identify the users who write better and those who write worse by allowing them to write and evaluate better within the system.

Finally, an implementation of the method schulze will always hold genuine elections within groups or to choose the best among the proposals.

Absolutely simple and intuitive interface will allow everyone in a short time, to find all the information they want.

Reference website

Installation and Setup

You can install Airesis to run locally on your machine, or if you prefer using Docker containers for a quick and easy setup.

Requirements

  • PostgreSQL >= 9 with the hstore extension enabled.
  • Redis in order to execute Sidekiq and all background jobs.

Local installation

  1. Download the project
git clone https://github.com/airesis/airesis.git
cd airesis
  1. Install the libraries
bundle
  1. Configure environment variables (such as PayPal, Google Maps API, etc.), run
cp config/application.example.yml config/application.yml

then edit the .yml file and set your custom values 4. Bootstrap the database, populating it with initial data (be advised: it needs ~ 5 minutes)

bundle exec rake db:setup
  1. Run Airesis
bundle exec rails s
  1. run Sidekiq
bundle exec sidekiq

Done! You have now a working version of Airesis!

Foreman

If you want to run all processes in a single command you can use Foreman

bundle exec foreman start

and it will take care of running everything for you.

Mailman

Users can reply in the forum by email. Run

ruby script/mailman_server.rb

in background to receive emails and create forum posts from them.

Docker

See Docker README

Seeding more data

You'll probably need some fake data in your development environment to test stuff. These scripts are available:

bundle exec rake airesis:seed:more:public_proposals[number]

Will generate number fake proposals in public open space and number new users (one for each proposal)

bundle exec rake airesis:seed:more:votable_proposals[number]

Will generate number fake proposals in public open space in vote for the next three days and number new users (one for each proposal)

bundle exec rake airesis:seed:more:clear_proposals

Destroy all the proposals in the database

To generate other fake data look at spec/factories folder.

Environment variables

Look at application.example.yml for a detailed explanation of each environment variable.

I18n

I18n is managed in a separate gem. See https://github.com/airesis/airesis_i18n to contribute. Contribute on Crowdin to the Translation of the project

What else should I know? What are we working on right now?

We want to take out everything which is related to our installation and make it easier to install.

Our main goal is to make it even more simple and usable for everybody!

The author

Alessandro Rodi

Alessandro Rodi ([email protected])

License

This software is released under AGPL .

For the terms of the license can be found in the LICENSE file available within the project.

Anyone which installs the application and is required to comply with the terms of the license and to incorporate in the footer of the website the following statement:

Powered by <a href="https://www.airesis.eu"> Airesis - The Social Network for eDemocracy </a>

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].