Yann Weber 06bd3b141d Model construct enhancement with backend and MH inheritance | 9 years ago | |
---|---|---|
Database | 9 years ago | |
EditorialModel | 9 years ago | |
Lodel | 9 years ago | |
LodelTestInstance | 9 years ago | |
.gitignore | 9 years ago | |
Doxyfile | 9 years ago | |
README.md | 9 years ago | |
lint | 9 years ago | |
makemigrations_interactive_rename.patch | 9 years ago | |
manage.py | 9 years ago | |
requirements.txt | 9 years ago | |
runtest | 9 years ago |
First test installation :
** 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 ONlodel2
.* TO “lodel”@“localhost”;
** Apply patch(es) for django …
** 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