説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Yann Weber 7e53eff0b1 Change the MySQL connector and updates the requirements.txt 9年前
EditorialModel Change the MySQL connector and updates the requirements.txt 9年前
Lodel Bugfixes in lefactory and letype 9年前
leobject Fixed connection strings for mysql 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年前
requirements.txt Change the MySQL connector and updates the requirements.txt 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