No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prieto 9413018837 Add a static url to webui conf 8 years ago
doc/img Add autyhentication/session flowcharts 8 years ago
examples Add a new sttings validator + use it 8 years ago
globconf.d Add a new sttings validator + use it 8 years ago
lodel Bugfix in autotools dist make target 8 years ago
m4 Add a forgotten (not mandatory file) 8 years ago
plugins Add a static url to webui conf 8 years ago
progs Add a static url to webui conf 8 years ago
scripts Bugfix in create_instance.sh and install/loader.py 8 years ago
tests Added tests for MultiRef datahandler and modified _check_data_value raise exception 8 years ago
tplinstall Bugfix in autotools dist make target 8 years ago
.gitignore Updated the doxygen documentation 8 years ago
AUTHORS Configure autotools for distributing lodel2 8 years ago
COPYING Configure autotools for distributing lodel2 8 years ago
ChangeLog Configure autotools for distributing lodel2 8 years ago
Doxyfile Doxygen documentation update 8 years ago
INSTALL Configure autotools for distributing lodel2 8 years ago
Makefile.am Bugfix in autotools dist make target 8 years ago
NEWS Configure autotools for distributing lodel2 8 years ago
README Bugfixes for dist make target 8 years ago
bootstrap.sh Configure autotools for distributing lodel2 8 years ago
configure.ac Add a data to buildconf.py 8 years ago
em_test.py Authentification form in Webui interface 8 years ago
requirements.txt Updated the requirements file 8 years ago
runtest Bugfix in autotools dist make target 8 years ago

README

Dependencies :
lodel2 components :
core :
python3 python3-lxml

build dependencies :
autoconf automake make

webui plugin :
python3-jinja2 python3-werkzeug uwsgi-plugin-python3

mongodb_datasource plugin :
python3-pymongo

lodel2 utils :
mass_deploy dependencies :
pwgen wamerican mongodb-clients

Build & install :
./bootstrap.sh #generate the configure, refresh the Makefile.in files
#--prefix=/usr is mandatory on debian because of a python3.4.2 bug
./configure --sysconfdir=/etc --localstatedir=/var --prefix=/usr
#build lodel2 (actually substitute paths script and buildconf.py files)
make
#Install lodel2 on system
make install
#Uninstall lodel2
make uninstall

Other make targets :
Doxygen documentation generation :
make doc #or simply run doxygen in the source dir
Run unit tests :
make check
#or
make unittest

Lodel2 instance management utilities :
SLIM : Simple Lodel Instance Manager
create a new instance named foo :
slim -n foo -c
list instances :
slim -l
list instances with details :
slim -lv[v[v]]
list instances with output formated for bash processing :
slim -l -b [-v[v[v]]
run make all for instance foo :
slim -n foo -m
run make for all existing instances :
slim --all -m
start an instance in forground
slim -n foo --start -f
start all instances :
slim -a --start
generate a nginx conf for all instances :
slim -a --nginx-conf
get some help for more options & actions :
slim -h

mass_deploy.sh : use for easy mass deployment of instances with webui & uwsgi
the script can be found in $prefix/share/lodel2/scripts/mass_deploy.sh

Usage : mass_deploy.sh N #with N the number of instances to deploy

- configuration can be found in /etc/lodel2/mass_deploy.cfg (
to indicate mongodb admin credentials)
- mass deploy create instances directories
in /tmp/lodel2_instances

Instance operations :
A Makefile is written to allow running most of operations. Existing targets are for the moment :

make dyncode # Leapi dynamic code creation ( in leapi_dyncode.py in lodel2 instance root dir)
make init_db # Call migration handlers to tell them to init all needed databases. (note : this target has dyncode as dependencie)
make list_hooks # List all the hooks registered


#Following informations can be obsolete
Dynamic code generation :
python3 scripts/refreshdyn.py examples/em_test.pickle OUTPUTFILE.py

Instance creation :
Use the script in scripts/create_instance.sh

Usage : scripts/create_instance.sh instance_name instance_dir [lodel_libdir]


Instance loader uppdate :
If the install/loader.py is updated you can update instance's loader.py using
scripts/create_instance.sh -u INSTANCE_PATH