diff --git a/ocean-db/.dockerignore b/ocean-db/.dockerignore deleted file mode 100644 index dfd6a8c..0000000 --- a/ocean-db/.dockerignore +++ /dev/null @@ -1,9 +0,0 @@ -.cache/ -.coverage -.eggs/ -.git/ -.gitignore -.ropeproject/ -.travis.yml -BigchainDB.egg-info/ -dist/ diff --git a/ocean-db/.gitignore b/ocean-db/.gitignore deleted file mode 100644 index 867c197..0000000 --- a/ocean-db/.gitignore +++ /dev/null @@ -1,97 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Swap -- copypasta from https://github.com/github/gitignore/blob/master/Global/Vim.gitignore -[._]*.s[a-v][a-z] -[._]*.sw[a-p] -[._]s[a-v][a-z] -[._]sw[a-p] - -# Session -Session.vim - -# Temporary -.netrwhist -*~ -# Auto-generated tag files -tags - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -.pytest_cache/ -nosetests.xml -coverage.xml -*.cover -.hypothesis/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py - -# Sphinx documentation -docs/build/ - -# PyBuilder -target/ - -# Ipython Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# Just in time documentation -docs/server/source/http-samples - -# Terraform state files -# See https://stackoverflow.com/a/41482391 -terraform.tfstate -terraform.tfstate.backup - -# tendermint data -tmdata/data -network/*/data - -# Docs that are fetched at build time -docs/contributing/source/cross-project-policies/*.md diff --git a/ocean-db/.pre-commit-config.yaml b/ocean-db/.pre-commit-config.yaml deleted file mode 100644 index e53e35b..0000000 --- a/ocean-db/.pre-commit-config.yaml +++ /dev/null @@ -1,20 +0,0 @@ -repos: -- repo: git://github.com/pre-commit/pre-commit-hooks - sha: v1.1.1 - hooks: - - id: trailing-whitespace - args: ['--no-markdown-linebreak-ext'] - - id: check-merge-conflict - - id: debug-statements - - id: check-added-large-files - - id: flake8 - -- repo: git://github.com/chewse/pre-commit-mirrors-pydocstyle - sha: v2.1.1 - hooks: - - id: pydocstyle - # list of error codes to check, see: http://www.pydocstyle.org/en/latest/error_codes.html - args: ['--select=D204,D201,D209,D210,D212,D300,D403'] - -# negate the exclude to only apply the hooks to 'bigchaindb' and 'tests' folder -exclude: '^(?!bigchaindb/)(?!tests/)' diff --git a/ocean-db/.readthedocs.yml b/ocean-db/.readthedocs.yml deleted file mode 100644 index c8b8b04..0000000 --- a/ocean-db/.readthedocs.yml +++ /dev/null @@ -1,6 +0,0 @@ -build: - image: latest - -python: - version: 3.6 - pip_install: true diff --git a/ocean-db/.travis.yml b/ocean-db/.travis.yml deleted file mode 100644 index fefdb4c..0000000 --- a/ocean-db/.travis.yml +++ /dev/null @@ -1,55 +0,0 @@ -sudo: required - -dist: trusty - -services: - - docker - -language: python -cache: pip - -python: - - 3.5 - - 3.6 - -env: - global: - - DOCKER_COMPOSE_VERSION=1.19.0 - matrix: - - TOXENV=flake8 - - TOXENV=docsroot - - TOXENV=docsserver - -matrix: - fast_finish: true - exclude: - - python: 3.5 - env: TOXENV=flake8 - - python: 3.5 - env: TOXENV=docsroot - - python: 3.5 - env: TOXENV=docsserver - include: - - python: 3.5 - env: - - BIGCHAINDB_DATABASE_BACKEND=localmongodb - - BIGCHAINDB_DATABASE_SSL= - - python: 3.6 - env: - - BIGCHAINDB_DATABASE_BACKEND=localmongodb - - BIGCHAINDB_DATABASE_SSL= - - python: 3.6 - env: - - BIGCHAINDB_DATABASE_BACKEND=localmongodb - - BIGCHAINDB_DATABASE_SSL= - - BIGCHAINDB_CI_ABCI=enable - -before_install: sudo .ci/travis-before-install.sh - -install: .ci/travis-install.sh - -before_script: .ci/travis-before-script.sh - -script: .ci/travis_script.sh - -after_success: .ci/travis-after-success.sh