* Change email to devs@bigchaindb.com

* Update Travis build badge URL

* Update some other email addresses
This commit is contained in:
Troy McConaghy 2018-12-10 18:10:58 +01:00 committed by GitHub
parent d9725d483b
commit 11817b9590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 21 additions and 22 deletions

View File

@ -41,7 +41,7 @@ This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. when an individual is representing the project or its community.
Instances of abusive, harassing, or otherwise unacceptable behavior directed at yourself or another community member may be Instances of abusive, harassing, or otherwise unacceptable behavior directed at yourself or another community member may be
reported by contacting a project maintainer at [conduct@bigchaindb.com](mailto:conduct@bigchaindb.com). All reported by contacting a project maintainer at [contact@bigchaindb.com](mailto:contact@bigchaindb.com). All
complaints will be reviewed and investigated and will result in a response that complaints will be reviewed and investigated and will result in a response that
is appropriate to the circumstances. Maintainers are is appropriate to the circumstances. Maintainers are
obligated to maintain confidentiality with regard to the reporter of an obligated to maintain confidentiality with regard to the reporter of an

View File

@ -1,5 +1,5 @@
FROM python:3.6 FROM python:3.6
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app
COPY . /usr/src/app/ COPY . /usr/src/app/
WORKDIR /usr/src/app WORKDIR /usr/src/app

View File

@ -1,5 +1,5 @@
FROM alpine:latest FROM alpine:latest
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
ARG TM_VERSION=0.22.8 ARG TM_VERSION=0.22.8
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app

View File

@ -1,5 +1,5 @@
FROM alpine:latest FROM alpine:latest
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app
COPY . /usr/src/app/ COPY . /usr/src/app/
WORKDIR /usr/src/app WORKDIR /usr/src/app

View File

@ -1,6 +1,6 @@
ARG python_version=3.6 ARG python_version=3.6
FROM python:${python_version} FROM python:${python_version}
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y vim \ && apt-get install -y vim \

View File

@ -12,7 +12,7 @@ so show the latest GitHub release instead.
[![Codecov branch](https://img.shields.io/codecov/c/github/bigchaindb/bigchaindb/master.svg)](https://codecov.io/github/bigchaindb/bigchaindb?branch=master) [![Codecov branch](https://img.shields.io/codecov/c/github/bigchaindb/bigchaindb/master.svg)](https://codecov.io/github/bigchaindb/bigchaindb?branch=master)
[![Latest release](https://img.shields.io/github/release/bigchaindb/bigchaindb/all.svg)](https://github.com/bigchaindb/bigchaindb/releases) [![Latest release](https://img.shields.io/github/release/bigchaindb/bigchaindb/all.svg)](https://github.com/bigchaindb/bigchaindb/releases)
[![Status on PyPI](https://img.shields.io/pypi/status/bigchaindb.svg)](https://pypi.org/project/BigchainDB/) [![Status on PyPI](https://img.shields.io/pypi/status/bigchaindb.svg)](https://pypi.org/project/BigchainDB/)
[![Travis branch](https://img.shields.io/travis/bigchaindb/bigchaindb/master.svg)](https://travis-ci.org/bigchaindb/bigchaindb) [![Travis branch](https://img.shields.io/travis/bigchaindb/bigchaindb/master.svg)](https://travis-ci.com/bigchaindb/bigchaindb)
[![Documentation Status](https://readthedocs.org/projects/bigchaindb-server/badge/?version=latest)](https://docs.bigchaindb.com/projects/server/en/latest/) [![Documentation Status](https://readthedocs.org/projects/bigchaindb-server/badge/?version=latest)](https://docs.bigchaindb.com/projects/server/en/latest/)
[![Join the chat at https://gitter.im/bigchaindb/bigchaindb](https://badges.gitter.im/bigchaindb/bigchaindb.svg)](https://gitter.im/bigchaindb/bigchaindb?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Join the chat at https://gitter.im/bigchaindb/bigchaindb](https://badges.gitter.im/bigchaindb/bigchaindb.svg)](https://gitter.im/bigchaindb/bigchaindb?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

View File

@ -74,7 +74,7 @@ The comments in the file explain what each of the variables mean.
echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> vars echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> vars
echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> vars
echo 'set_var EASYRSA_REQ_OU "IT"' >> vars echo 'set_var EASYRSA_REQ_OU "IT"' >> vars
echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> vars echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> vars
Note: Later, when building a CA or generating a certificate signing request, you will be prompted to enter a value for the OU (or to accept the default). You should change the default OU from ``IT`` to one of the following, as appropriate: Note: Later, when building a CA or generating a certificate signing request, you will be prompted to enter a value for the OU (or to accept the default). You should change the default OU from ``IT`` to one of the following, as appropriate:
``ROOT-CA``, ``ROOT-CA``,

View File

@ -111,8 +111,7 @@ including:
If you don't find your preferred language in this list, do not despair but If you don't find your preferred language in this list, do not despair but
reach out to us for help on Github/Gitter or product@bigchaindb.com. reach out to us for help on GitHub/Gitter or devs@bigchaindb.com.
#### Revamp of Crypto-Conditions signing details #### Revamp of Crypto-Conditions signing details

View File

@ -1,5 +1,5 @@
FROM nginx:stable FROM nginx:stable
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
RUN apt-get update \ RUN apt-get update \
&& apt-get -y upgrade \ && apt-get -y upgrade \

View File

@ -1,5 +1,5 @@
FROM tendermint/tendermint:0.22.8 FROM tendermint/tendermint:0.22.8
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
USER root USER root
RUN apk --update add bash RUN apk --update add bash

View File

@ -7,7 +7,7 @@
# https://docs.cloudmanager.mongodb.com/tutorial/install-monitoring-agent-with-deb-package/ # https://docs.cloudmanager.mongodb.com/tutorial/install-monitoring-agent-with-deb-package/
FROM ubuntu:xenial FROM ubuntu:xenial
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
# Using ARG, one can set DEBIAN_FRONTEND=noninteractive and others # Using ARG, one can set DEBIAN_FRONTEND=noninteractive and others
# just for the duration of the build: # just for the duration of the build:
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive

View File

@ -1,5 +1,5 @@
FROM mongo:3.6 FROM mongo:3.6
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
RUN apt-get update \ RUN apt-get update \
&& apt-get -y upgrade \ && apt-get -y upgrade \

View File

@ -1,5 +1,5 @@
FROM nginx:stable FROM nginx:stable
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
RUN apt-get update \ RUN apt-get update \
&& apt-get -y upgrade \ && apt-get -y upgrade \

View File

@ -1,5 +1,5 @@
FROM nginx:stable FROM nginx:stable
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
RUN apt-get update \ RUN apt-get update \
&& apt-get -y upgrade \ && apt-get -y upgrade \

View File

@ -1,5 +1,5 @@
FROM openresty/openresty:xenial FROM openresty/openresty:xenial
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
RUN apt-get update \ RUN apt-get update \
&& apt-get -y upgrade \ && apt-get -y upgrade \

View File

@ -13,7 +13,7 @@ function configure_root_ca(){
echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars
echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars
echo 'set_var EASYRSA_REQ_OU "ROOT-CA"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "ROOT-CA"' >> $1/vars
echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> $1//vars echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1//vars
sed -i.bk '/^extendedKeyUsage/ s/$/,clientAuth/' $1/x509-types/server sed -i.bk '/^extendedKeyUsage/ s/$/,clientAuth/' $1/x509-types/server
echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars
@ -36,7 +36,7 @@ function configure_member_cert_gen(){
echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars
echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars
echo 'set_var EASYRSA_REQ_OU "MONGO-MEMBER"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "MONGO-MEMBER"' >> $1/vars
echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> $1/vars echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1/vars
echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars
echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars
$1/easyrsa init-pki $1/easyrsa init-pki
@ -55,7 +55,7 @@ function configure_client_cert_gen(){
echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars echo 'set_var EASYRSA_REQ_CITY "Berlin"' >> $1/vars
echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars echo 'set_var EASYRSA_REQ_ORG "BigchainDB GmbH"' >> $1/vars
echo 'set_var EASYRSA_REQ_OU "MONGO-CLIENT"' >> $1/vars echo 'set_var EASYRSA_REQ_OU "MONGO-CLIENT"' >> $1/vars
echo 'set_var EASYRSA_REQ_EMAIL "dev@bigchaindb.com"' >> $1/vars echo 'set_var EASYRSA_REQ_EMAIL "devs@bigchaindb.com"' >> $1/vars
echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars echo "set_var EASYRSA_SSL_CONF \"$1/openssl-1.0.cnf\"" >> $1/vars
echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars echo "set_var EASYRSA_PKI \"$1/pki\"" >> $1/vars
$1/easyrsa init-pki $1/easyrsa init-pki

View File

@ -4,7 +4,7 @@
# kubectl run -it toolbox --image bigchaindb/toolbox --restart=Never --rm # kubectl run -it toolbox --image bigchaindb/toolbox --restart=Never --rm
FROM alpine:3.5 FROM alpine:3.5
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
RUN apk add --no-cache --update curl bind-tools python3-dev g++ \ RUN apk add --no-cache --update curl bind-tools python3-dev g++ \
libffi-dev make vim git nodejs openssl-dev \ libffi-dev make vim git nodejs openssl-dev \

View File

@ -1,6 +1,6 @@
ARG tm_version=0.22.8 ARG tm_version=0.22.8
FROM tendermint/tendermint:${tm_version} FROM tendermint/tendermint:${tm_version}
LABEL maintainer "dev@bigchaindb.com" LABEL maintainer "devs@bigchaindb.com"
WORKDIR / WORKDIR /
USER root USER root
RUN apk --update add bash RUN apk --update add bash

View File

@ -107,7 +107,7 @@ setup(
), ),
url='https://github.com/BigchainDB/bigchaindb/', url='https://github.com/BigchainDB/bigchaindb/',
author='BigchainDB Contributors', author='BigchainDB Contributors',
author_email='dev@bigchaindb.com', author_email='devs@bigchaindb.com',
license='Apache Software License 2.0', license='Apache Software License 2.0',
zip_safe=False, zip_safe=False,
python_requires='>=3.6', python_requires='>=3.6',