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.
 
 
 
 
Dmitriy Shesterkin 058e363898 add send email 9 years ago
conf del not needed 9 years ago
extra add stamp, cont filter orders list 9 years ago
requirements add fill database 9 years ago
src add send email 9 years ago
static fix js, fix scoupe 9 years ago
templates add robokassa paymant 9 years ago
var/log docker 9 years ago
.bowerrc refactor project structure 9 years ago
.dockerignore add tags 9 years ago
.editorconfig start docker-composer 9 years ago
.eslintrc.js frontend for add stamp crop image, test only stamp 9 years ago
.gitignore factories 9 years ago
Dockerfile add stamp, cont filter orders list 9 years ago
Makefile makefile 9 years ago
README.md refactor project, add task delete not activated users 9 years ago
bower.json add stamp, cont filter orders list 9 years ago
docker-compose.dev.yml add docker image on alpine linux 9 years ago
docker-compose.yml docker bower 9 years ago
fabfile.py fix debug toolbar 9 years ago
manage.py pep 8 tests fix 9 years ago
pytest.ini cut yandex 9 years ago
tox.ini cut yandex 9 years ago

README.md

Dokumentor

Сервис для создания и хранения первичных бухгалтерских документов.

Установка dev версии

Клонируем проект

git clone https://bitbucket.org/Air51/dokumentor_dev dokumentor

Переходим в папку проекта

cd dokumentor

Пеерключаемся в ветку develop

git checkout develop

Установка проекта для разработки вручную

Создаем окружение и ставим зависимости

virtualenv --python=python3 env
source env/bin/activate
pip install -r requirements/local.txt

Настройка окружения

Копируем файл с переменными окружения

cp conf/env.template conf/env

и прописывем в conf/env свои данные

Накатываем миграции и заполняем базу данных

make migrate

Загружаем фикстуры

make loaddata

Установка проекта для разработки

Для разработки проект можно развернуть выполив

make run

###Запуск сервера Celery

make worker

###Запуск Тестов

make qa