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 5dd9c5b9b9 add decorator for check active profile for edit docs, some fixes in save profile model with checking existing file img 8 years ago
bin fix 9 years ago
conf remake port for develop (down) 8 years ago
extra sall sign 9 years ago
requirements fixes 8 years ago
src add decorator for check active profile for edit docs, some fixes in save profile model with checking existing file img 8 years ago
static fix mobile 8 years ago
templates add decorator for check active profile for edit docs, some fixes in save profile model with checking existing file img 8 years ago
.bowerrc refactor project structure 9 years ago
.dockerignore delete upload dir 9 years ago
.editorconfig start docker-composer 9 years ago
.eslintrc.js frontend for add stamp crop image, test only stamp 9 years ago
.gitattributes add gitatributes 9 years ago
.gitignore add template 9 years ago
Dockerfile add stamp, cont filter orders list 9 years ago
Dockerfile-prod deploy 9 years ago
Makefile add decorator for check active profile for edit docs, some fixes in save profile model with checking existing file img 8 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.develop.yml remake port for develop (down) 8 years ago
docker-compose.local.yml env settings, deploy 9 years ago
docker-compose.stage.yml env settings, deploy 9 years ago
docker-compose.yml deploy 9 years ago
fabfile.py fix 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