Write-it is an application that aims to deliver messages to people whose contacts are to be private or the messages should be public, for example: members of congress.
Write-it is a layer on top of popit from where it takes the people and adds contacts. The way it delivers messages is using plugins for example: mailit. And this approach allows for future ways of delivering for example: twitter, whatsapp, fax or pager.
Future uses are in congresoabierto to replace the old "preguntales" (You can check here, to see how it used to work) feature, it was inspired by writetothem.
Assuming you have Vagrant installed, run the following:
git clone https://github.com/ciudadanointeligente/write-it.git
cd write-it
vagrant up
Vagrant will automatically install WriteIt and all of its dependencies. This can take a few minutes.
Once it’s complete, log into the virtual machine with:
vagrant ssh
Once you’re inside the virtual machine, you can load some fixtures with:
./manage.py loaddata example_data.yaml
Then run the development server with:
./manage.py runserver 0.0.0.0:8000
And visit http://127.0.0.1.xip.io:8000 on your host machine to use WriteIt.
It's required if you want to play around seaching messages and answers, this part is optional.
In ubuntu you can do sudo apt-get install libffi-dev
- Libssl
In ubuntu you can do sudo apt-get install libssl-dev
- GCC (G++) 4.3+ (used by python libsass package)
In ubuntu you can do sudo apt-get install g++
- yui-compressor
In ubuntu you can do sudo apt-get install yui-compressor
Write-it is built using Django. You should install Django and its dependencies inside a virtualenv. We suggest you use virtualenvwrapper to create and manage virtualenvs, so if you don’t already have it, go install it, remembering in particular to add the required lines to your shell startup file.
With virtualenvwrapper installed, clone this repo, cd
into it, and create a virtualenv:
git clone git@github.com:ciudadanointeligente/write-it.git
cd write-it
mkvirtualenv writeit
Install the requirements:
pip install -r requirements.txt
Set up the database, creating an admin user when prompted:
./manage.py syncdb && ./manage.py migrate
There's a problem migrating and the problem looks like
django.db.utils.OperationalError: no such table: tastypie_apikey
It can be fixed by running it twice.
Then run the server:
./manage.py runserver
Elasticsearch is optional and can be turned off by creating a new local_settings.py file vi writeit/local_settings.py
with the following content
LOCAL_ELASTICSEARCH = False
For testing you need to run ./test.py
For coverage analysis run ./coverage.sh
At this point you probably have write-it running without any users. You could create a (super) user by running:
python manage.py createsuperuser
It will ask you the username and password (which you will need to repeat).
With that done you will be able to access '/accounts/login/'.
Write-it has been used mostly through its REST API for which there are a number of API clients. The github repos and the status of the development are listed below:
- writeit-rails ALPHA
- writeit-django ALPHA
The instructions are in the following link.