Yann Weber 1ff7e6afc0 install/Makefile update (add a rule to remove dynamic code) | 8 years ago | |
---|---|---|
DataSource | 8 years ago | |
EditorialModel | 8 years ago | |
Lodel | 8 years ago | |
Router | 8 years ago | |
Template | 8 years ago | |
acl | 8 years ago | |
doc/img | 8 years ago | |
install | 8 years ago | |
leapi | 8 years ago | |
libs | 8 years ago | |
templates | 8 years ago | |
.gitignore | 8 years ago | |
Doxyfile | 8 years ago | |
Makefile | 8 years ago | |
README.md | 8 years ago | |
lint | 9 years ago | |
lodel.py | 8 years ago | |
lodel_init.sh | 8 years ago | |
refreshdyn.py | 8 years ago | |
requirements.txt | 8 years ago | |
runtest | 9 years ago | |
settings.py | 8 years ago |
** install dependencies pip install -r requirements.txt
Creating a Lodel “instance”:
use the lodel_init.sh script :
lodel_init.sh INSTANCE_NAME INSTANCE_WANTED_PATH [LODEL2_LIB_PATH]
cd INSTANCE_PATH
Create a database for your instance mysql
CREATE DATABASE
lodel2
CHARACTER SET utf8 COLLATE utf8_general_ci; GRANT ALL ONlodel2
.* TO “lodel”@“localhost”;
Edit instance_settings.py according to your database, install database and dynamic code
make
Once the instance is created you can run an interactive python interpreter using :
python loader.py
If you want to write a script that run is the instance env you have to use
from loader import *
** Doxygen generation Dependencies : doxygen graphviz doxypy Generation : run make doc in the root folder
** create local config in settings.py Copy settings.py.example to settings.py, change the conf to your local settings
** Tools
A Makefile is written with common operations :