Damien Accorsi 6433b73e8d rename pod into tracim | il y a 10 ans | |
---|---|---|
bin | il y a 10 ans | |
doc | il y a 10 ans | |
install | il y a 10 ans | |
pod/pod | il y a 10 ans | |
tracim | il y a 10 ans | |
.gitignore | il y a 10 ans | |
.hgignore | il y a 11 ans | |
README.md | il y a 10 ans | |
README.md~ | il y a 10 ans |
Tracim is collaborative software designed to allow people to work on and share various data and document types.
It is AGPL licenced software.
Tracim is licensed under the terms of the GNU Affero General Public License as published by the Free Software Foundation.
It is currently unstable, it is recommended to use it for test purpose only.
It's a python 3 web application based on TurboGears; it uses PostgreSQL as storage engine.
It allows to keep private and shared data in the same place. The ACL is based on share with groups or individual users.
The fastest way to test it is to test the demo:
The other way to test it is to install it on your computer. See documentation below.
Note: the following information is for Debian. For other OS, adapt the package names.
You'll need to install the following packages:
apt-get install realpath python3 python-virtualenv python3-dev python-pip build-essential postgresql-server-dev-all
If you work on a local database, then you also need to install PostgreSQL:
apt-get install postgresql postgresql-client
Get the sources from Bitbucket:
git clone https://bitbucket.org/lebouquetin/tracim.git
Note: Now everything is documented to be executed from the tracim directory newly created.
Check the pg_hba.conf file, it should allow connection for user/pass through loopback IP address. The file should include the following configuration:
# IPv4 local connections:
host all all 127.0.0.1/32 md5
Note: on Debian, the pg_hba file is found at /etc/postgresql/9.1/main/pg_hba.conf
If you changed the file, reload PostgreSQL:
service postgresql reload
We suppose you will create a user named tracimuser with passowrd tracimpassword and a database tracimdb
First login as root, then su as postgre and run a PostgreSQL client:
root@hostname:~# su postgres
postgres@hostname:/root$ psql
psql (9.1.13)
Type "help" for help.
postgres=#
Now, type the following commands:
CREATE ROLE tracimuser WITH LOGIN PASSWORD 'tracimpassword';
CREATE DATABASE tracimdb OWNER tracimuser;
GRANT ALL PRIVILEGES ON DATABASE tracimdb TO tracimuser;
At the end, you can quit the psql client by running the \q quit command:
postgres=# \q
postgres@mozart:/root$
You can test your newly created user by running the following command:
psql -h 127.0.0.1 -W -U tracimuser tracimdb -c 'SELECT NOW();'
The result should be similar to:
user@hostname:~$ psql -h 127.0.0.1 -W -U tracimuser tracimdb -c 'SELECT NOW();'
Password for user tracimuser:
now
-------------------------------
2014-06-16 11:35:48.590838+02
(1 row)
Your database is now ready. Fill it with the required schema and data by importing SQL:
psql -h 127.0.0.1 -W -U tracimuser tracimdb < doc/database/tracim-init-database.sql
You can test it through the following command:
user@hostname:~$ psql -h 127.0.0.1 -W -U tracimuser tracimdb -c 'SELECT * from tracim_user;'
You should find the admin@localhost user entry.
Tracim uses virtualenv as deployment environment. This ensure that there will be no conflict between system-wide python modules and tracim required ones.
virtualenv -p /usr/bin/python3 tg2env
source tg2env/bin/activate
cd tracim && python setup.py develop && cd -
pip install -r install/requirements.txt
Notes:
cp tracim/development.ini.base tracim/development.ini
Configure database in the development.ini file. This is defined as sqlalchemy.url and the default value is below:
sqlalchemy.url = postgresql://tracim_user:tracim_user_password@127.0.0.1:5432/tracim
Default configuration is to listen on port 8080. If you want to adapt this to your environment, edit the .ini file and setup the port you want:
port = 8080
The default language is English. You can change it to french by uncommenting the following line in the .ini file:
lang = fr_FR
Now you can run the standalone server:
./bin/run.sh
Which should result in something like this:
13:53:49,982 INFO [gearbox] Starting subprocess with file monitor
13:53:50,646 WARNI [py.warnings] /tmp/tracim/protov1/tg2env/lib/python3.2/site-packages/tw2/core/validation.py:12: ImportWarning: Not importing directory '/tmp/tracim/protov1/tg2env/lib/python3.2/site-packages/tw2/core/i18n': missing __init__.py
from .i18n import _
13:53:50,862 INFO [gearbox] Starting server in PID 11174.
Starting HTTP server on http://0.0.0.0:8080
You can now enter the application at http://localhost:8080 and login:
Enjoy :)
Install dependencies:
apt-get install apache2 libapache2-mod-wsgi-py3
Example of Apache WSGI configuration. This configuration refers to productionapp.wsgi which is a copy of the file app.wsgi available in the repo. (this file has to be updated to match with your environment and installation)
<VirtualHost *:80>
ServerAdmin webmaster@archipeldata.com
ServerName demo.archipeldata.com
WSGIProcessGroup tracim
WSGIDaemonProcess tracim user=www-data group=adm threads=4 python-path=/opt/traciminstall/tg2env/lib/python3.2/site-packages
WSGIScriptAlias / /opt/traciminstall/tracim/productionapp.wsgi
#Serve static files directly without TurboGears
Alias /img /opt/traciminstall/tracim/tracim/public/img/
Alias /favicon.ico /opt/traciminstall/tracim/tracim/public/favicon.ico
Alias /css /opt/traciminstall/tracim/tracim/public/css
Alias /javascript /opt/traciminstall/tracim/tracim/public/javascript
CustomLog /var/log/apache2/demotracim-access.log combined
ErrorLog /var/log/apache2/demotracim-error.log
LogLevel debug
</VirtualHost>
If you need help, contact us. If you want to help, contact us. So... contact us ;)
Damien Accorsi - damien.accorsi@free.fr