This code is "work in progress". Not usable at all for production.
Backend source code of tracim v2, using Pyramid Framework.
on Debian Stretch (9) with sudo:
sudo apt update
sudo apt install git
sudo apt install python3 python3-venv python3-dev python3-pip
sudo apt install redis-server
sudo apt install zlib1g-dev libjpeg-dev
sudo apt install imagemagick libmagickwand-dev ghostscript
for better preview support:
sudo apt install libreoffice # most office documents file and text format
sudo apt install inkscape # for .svg files.
get source from github:
git clone https://github.com/tracim/tracim_v2.git
go to backend subdirectory:
cd backend
Create a Python virtual environment:
python3 -m venv env
Activate it in your terminal session (all tracim command execution must be executed under this virtual environment):
source env/bin/activate
Upgrade packaging tools:
pip install --upgrade pip setuptools
Install the project in editable mode with its testing requirements :
pip install -e ".[testing]"
If you want to use postgresql, mysql or other databases than the default one: sqlite, you need to install python driver for those databases that are supported by sqlalchemy.
For postgreSQL and mySQL, those are shortcuts to install Tracim with test and specific driver.
For PostgreSQL:
pip install -e ".[testing,postgresql]"
For mySQL:
pip install -e ".[testing,mysql]"
Create configuration file for a development environment:
cp development.ini.sample development.ini
Initialize the database using tracimcli tool
tracimcli db init
Stamp current version of database to last (useful for migration):
alembic -c development.ini stamp head
create wsgidav configuration file for webdav:
cp wsgidav.conf.sample wsgidav.conf
You can either install uwsgi with pip or with you distrib package manager:
# install uwsgi with pip ( unneeded if you already have uwsgi with python3 plugin enabled)
sudo pip3 install uwsgi
or on debian 9 :
# install uwsgi on debian 9
sudo apt install uwsgi uwsgi-plugin-python3
Run all services with uwsgi
# set tracim_conf_file path
export TRACIM_CONF_PATH="$(pwd)/development.ini"
export TRACIM_WEBDAV_CONF_PATH="$(pwd)/wsgidav.conf"
# pyramid webserver
uwsgi -d /tmp/tracim_web.log --http-socket :6543 --plugin python3 --wsgi-file wsgi/web.py -H env --pidfile /tmp/tracim_web.pid
# webdav wsgidav server
uwsgi -d /tmp/tracim_webdav.log --http-socket :3030 --plugin python3 --wsgi-file wsgi/webdav.py -H env --pidfile /tmp/tracim_webdav.pid
to stop them:
# pyramid webserver
uwsgi --stop /tmp/tracim_web.pid
# webdav wsgidav server
uwsgi --stop /tmp/tracim_webdav.pid
You can also preset uwsgi config for tracim, this way, creating this kind of .ini file:
# You need to replace <PATH> with correct absolute path
[uwsgi]
plugins = python3
chdir = <PATH>/tracim_v2/backend/
module = wsgi.web:application
home = <PATH>/tracim_v2/backend/env/
env = TRACIM_CONF_PATH=<PATH>/tracim_v2/backend/development.ini
and :
# You need to replace <PATH> with correct absolute path
[uwsgi]
plugins = python3
chdir = <PATH>/tracim_v2/backend/
module = wsgi.webdav:application
home = <PATH>/tracim_v2/backend/env/
env = TRACIM_CONF_PATH=<PATH>/tracim_v2/backend/development.ini
env = TRACIM_WEBDAV_CONF_PATH=<PATH>/tracim_v2/backend/wsgidav.conf
You can then run the process this way :
# You need to replace <WSGI_CONF_WEB> with correct path
uwsgi --ini <WSGI_CONF_WEB>.ini --http-socket :6543
# You need to replace <WSGI_CONF_WEBDAV> with correct path
uwsgi --ini <WSGI_CONF_WEBDAV>.ini --http-socket :3030
run tracim_backend web api:
pserve development.ini
run wsgidav server:
tracimcli webdav start
Before running some functional test related to email, you need a local working MailHog see here : https://github.com/mailhog/MailHog
You can run it this way with docker :
docker pull mailhog/mailhog
docker run -d -p 1025:1025 -p 8025:8025 mailhog/mailhog
Run your project's tests:
pytest
Run mypy checks:
mypy --ignore-missing-imports --disallow-untyped-defs tracim
Run pep8 checks:
pep8 tracim
Tracim_backend give access to a REST API in /api/v2. This API is auto-documented with Hapic. The specification is accessible when you run Tracim, go to /api/v2/doc .
For example, with default config:
# run tracim
pserve development.ini
# launch your favorite web-browser
firefox http://localhost:6543/api/v2/doc/
In Tracim, only some user can access to some informations, this is also true in Tracim REST API. you can check the roles documentation to check what a specific user can do.
see here