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.
|
|
10 years ago | |
|---|---|---|
| accounts | 10 years ago | |
| article | 10 years ago | |
| city | 10 years ago | |
| company | 10 years ago | |
| conference | 10 years ago | |
| core | 10 years ago | |
| country | 10 years ago | |
| directories | 10 years ago | |
| django_messages | 10 years ago | |
| docs | 10 years ago | |
| emencia | 10 years ago | |
| expobanner | 10 years ago | |
| exposition | 10 years ago | |
| file | 11 years ago | |
| functions | 10 years ago | |
| import_xls | 10 years ago | |
| locale/en/LC_MESSAGES | 10 years ago | |
| meta | 10 years ago | |
| news | 12 years ago | |
| note | 11 years ago | |
| organiser | 11 years ago | |
| password_reset | 10 years ago | |
| photologue | 10 years ago | |
| photoreport | 11 years ago | |
| place_conference | 10 years ago | |
| place_exposition | 10 years ago | |
| proj | 10 years ago | |
| registration | 10 years ago | |
| review | 12 years ago | |
| seminar | 10 years ago | |
| service | 10 years ago | |
| settings | 10 years ago | |
| specialist_catalog | 10 years ago | |
| static | 10 years ago | |
| templates | 10 years ago | |
| theme | 10 years ago | |
| translator | 10 years ago | |
| webinar | 10 years ago | |
| wizard | 10 years ago | |
| .gitignore | 10 years ago | |
| .htpasswd | 12 years ago | |
| Makefile | 10 years ago | |
| README | 10 years ago | |
| README.md | 10 years ago | |
| jpegsrc.v8c.tar.gz | 12 years ago | |
| manage.py | 11 years ago | |
| project.wsgi | 11 years ago | |
| requirements.txt | 10 years ago | |
README.md
Expomap project #mysql sudo apt-get install mysql-server mysql-client libmysqlclient-dev mysql-workbench
#memcached sudo apt-get install libmemcached-dev
south
pip install south -U
proj/local.py EXAMPLE
# -*- coding: utf-8 -*-
from proj.settings import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'expomap',
'USER': 'root',
'PASSWORD': '***',
'HOST': '',
'PORT': '',
}
}
CACHES = {
"default": {
"BACKEND": "redis_cache.cache.RedisCache",
"LOCATION": "/var/run/redis/redis.sock",
"OPTIONS": {
"CLIENT_CLASS": "redis_cache.client.DefaultClient",
},
}
}
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
INSTALLED_APPS += ('south',)
python manage.py syncdb --settins=proj.local python manage.py migrate settings 0001 --fake --settins=proj.local python manage.py migrate settings --settins=proj.local