summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaltycrys <73420320+saltycrys@users.noreply.github.com>2020-12-10 08:18:30 +0100
committerGitHub <noreply@github.com>2020-12-10 08:18:30 +0100
commitb566c4ba1a4b44044154b54e33f1fa45fc5b1e90 (patch)
tree30af67693ea06fcd020859544fd2b57802bf4085
parent2349a6ab0cbbe135b5e5837ade671a4394eda6ae (diff)
downloadinvidious-b566c4ba1a4b44044154b54e33f1fa45fc5b1e90.tar.gz
invidious-b566c4ba1a4b44044154b54e33f1fa45fc5b1e90.tar.bz2
invidious-b566c4ba1a4b44044154b54e33f1fa45fc5b1e90.zip
Untrack config.yml (#1557)
* Untrack config.yml `config/config.yml` has been untracked and moved to `config/config.example.yml`. The Dockerfile has been updated to copy all `config/config.*` files and to try to move `config/config.example.yml` to `config/config.yml`. If a user supplied `config/config.yml` exists it is not overwritten. * Update Dockerfile to use `shard.lock` * Fix tests
-rw-r--r--.gitignore1
-rw-r--r--config/config.example.yml (renamed from config/config.yml)0
-rw-r--r--docker/Dockerfile6
-rw-r--r--spec/helpers_spec.cr2
4 files changed, 6 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 3bbfccf0..1779a73d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
/.vscode/
/invidious
/sentry
+/config/config.yml
diff --git a/config/config.yml b/config/config.example.yml
index e83a7515..e83a7515 100644
--- a/config/config.yml
+++ b/config/config.example.yml
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 96f844fe..7d4932fc 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -2,7 +2,8 @@ FROM crystallang/crystal:0.35.1-alpine AS builder
RUN apk add --no-cache curl sqlite-static
WORKDIR /invidious
COPY ./shard.yml ./shard.yml
-RUN shards update && shards install && \
+COPY ./shard.lock ./shard.lock
+RUN shards install && \
# TODO: Document build instructions
# See https://github.com/omarroth/boringssl-alpine/blob/master/APKBUILD,
# https://github.com/omarroth/lsquic-alpine/blob/master/APKBUILD,
@@ -23,7 +24,8 @@ WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \
adduser -u 1000 -S invidious -G invidious
COPY ./assets/ ./assets/
-COPY --chown=invidious ./config/config.yml ./config/config.yml
+COPY --chown=invidious ./config/config.* ./config/
+RUN mv -n config/config.example.yml config/config.yml
RUN sed -i 's/host: \(127.0.0.1\|localhost\)/host: postgres/' config/config.yml
COPY ./config/sql/ ./config/sql/
COPY ./locales/ ./locales/
diff --git a/spec/helpers_spec.cr b/spec/helpers_spec.cr
index dd764074..d297759e 100644
--- a/spec/helpers_spec.cr
+++ b/spec/helpers_spec.cr
@@ -12,7 +12,7 @@ require "../src/invidious/search"
require "../src/invidious/trending"
require "../src/invidious/users"
-CONFIG = Config.from_yaml(File.open("config/config.yml"))
+CONFIG = Config.from_yaml(File.open("config/config.example.yml"))
describe "Helper" do
describe "#produce_channel_videos_url" do