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.
 
 
 
 
 
 
Alexander Burdeiny a44a4dfdcd 1240: рэндеринг рекламы 10 years ago
accounts 1241: Статистика пользователей в админке 10 years ago
article cache bugfix 10 years ago
city add meta 10 years ago
company 1241: Статистика пользователей в админке 10 years ago
conference 1203 Done. Need testing. 10 years ago
core 1193: Лэндинг-Страница "Реклама" 10 years ago
country cache bugfix 10 years ago
directories Directories refactor 10 years ago
django_messages django messages refactor 10 years ago
docs Add some docs with some local changes 10 years ago
emencia 1192: all Done. 10 years ago
expobanner 1193: Лэндинг-Страница "Реклама" 10 years ago
exposition 1203 Done. Need testing. 10 years ago
file fast Commit 11 years ago
functions 1245: Блокировка пользователей 10 years ago
import_xls hot fix 10 years ago
locale/en/LC_MESSAGES merged 10 years ago
meta Fixes on frontend from production 10 years ago
news Big commit 12 years ago
note Commit 11 years ago
organiser Tickets. 16.02.2015 11 years ago
password_reset Translates 10 years ago
photologue Photogallery fix 10 years ago
photoreport 16.09 11 years ago
place_conference Fix places 10 years ago
place_exposition banners 10 years ago
proj 1193: Лэндинг-Страница "Реклама" 10 years ago
registration refactor accounts 10 years ago
review url checking in all forms 12 years ago
seminar fix extra queries bug 10 years ago
service 1193: Лэндинг-Страница "Реклама" 10 years ago
settings 1193: Лэндинг-Страница "Реклама" 10 years ago
specialist_catalog Specialist catalog bugs 10 years ago
static 1240: рэндеринг рекламы 10 years ago
templates 1240: рэндеринг рекламы 10 years ago
theme fix some bugs 10 years ago
translator pagination improved 10 years ago
webinar fix extra queries bug 10 years ago
wizard merged 10 years ago
.gitignore изменил .gitignore 10 years ago
.htpasswd apache settings 12 years ago
Makefile 1240: рэндеринг рекламы 10 years ago
README.md 1245: Блокировка пользователей 10 years ago
jpegsrc.v8c.tar.gz Commit with photologue and profile and registration 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

python manage.py migrate accounts 0001 --fake
python manage.py migrate accounts
python manage.py migrate company 0001 --fake
python manage.py migrate company