Replace DB_URL with DATABASE_URL

This way it is shared with diesel, which simplifies a lot the setup

Also fixes a few issues in the documentation, that are not directly related
This commit is contained in:
Bat
2018-10-06 19:17:36 +01:00
parent 7a64005ca9
commit 9cc795d8be
8 changed files with 47 additions and 43 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libssl-dev
WORKDIR /app
COPY Cargo.toml Cargo.lock ./
RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.2.0'
RUN cargo install diesel_cli --no-default-features --features postgres --version '=1.3.0'
COPY . .
RUN cargo install --force
RUN cargo install --path plume-cli --force