説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Roland Haroutiounian 20c152c58b PEP8/Pylint on classtypes.py 9年前
Database [doxygen] Réécriture de la doc sur des méthodes de sqlsetup.py 9年前
EditorialModel PEP8/Pylint on classtypes.py 9年前
Lodel Addapt graphviz backend and random EM generator to changes on master branch 9年前
LodelTestInstance Solved some bugs about conditionnal models instanciation in LodelTestInstance.models 9年前
.gitignore New version (again) of the fieldtypes 9年前
Doxyfile Adding graph generation to Doxyfile 9年前
README.md README : install documentation for test 9年前
lint Add a lint script used to test pep8 and lint error 9年前
makemigrations_interactive_rename.patch Added a dryrun option to the migration handler and solved a bug in the django patch file 9年前
manage.py Ajout du projet Lodel 9年前
requirements.txt First version of the DjangoMigrationHandler. Created a LodelTestInstance for tests purpose 9年前
runtest Added modify_rank test, done some refactoring and updated runtest utils script 9年前

README.md

First test installation :

  • use python 3.4

** install dependencies pip install -r requirements.txt

** create local config in Lodel/settings/locale.py DATABASES = {

'default': {
    'ENGINE': 'django.db.backends.mysql',
    'NAME': 'lodel2',
    'USER': 'lodel',
    'PASSWORD': 'lodel',
    'HOST': 'localhost',
}

}

** create DATABASES mysql

CREATE DATABASE lodel2 CHARACTER SET utf8 COLLATE utf8_general_ci; GRANT ALL ON lodel2.* TO “lodel”@“localhost”;

** Apply patch(es) for django …

  • makemigrations_interactive_rename.patch => fix makemigrations interactive parameter cd path/to/django/ patch -p2 < /path/to/lodel2/makemigrations_interactive_rename.patch

** create tables for django

if not clean : mysql

DROP DATABASE lodel2; recreate database rm -rf LodelTestInstance/migrations/

./manage.py makemigrations --empty LodelTestInstance ./manage.py migrate