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 616cbbdcb6 add test 9 years ago
conf add deploy settings, test for task with message bonus 9 years ago
requirements add deploy settings, test for task with message bonus 9 years ago
src add test 9 years ago
static add task for delete license, add new page license and accounts 9 years ago
templates add task for delete license, add new page license and accounts 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 add deploy settings, test for task with message bonus 9 years ago
Dockerfile remade docker-compose 9 years ago
Makefile fix admin license field date_to 9 years ago
README.md refactor project, add task delete not activated users 9 years ago
bower.json refactor project structure 9 years ago
docker-compose.yml mails template 9 years ago
fabfile.py fix debug toolbar 9 years ago
manage.py pep 8 tests fix 9 years ago
pytest.ini rm settings 9 years ago
tox.ini fix test 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