Browse Source

moved away from github

boyska 2 years ago
parent
commit
dba069d757
2 changed files with 2 additions and 2 deletions
  1. 1 1
      contrib/docker/Dockerfile
  2. 1 1
      techrec/forge.py

+ 1 - 1
contrib/docker/Dockerfile

@@ -9,7 +9,7 @@ python-pip
 RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends
 virtualenvwrapper
 
-RUN git clone https://github.com/boyska/techrec.git /opt/techrec
+RUN git clone https://git.lattuga.net/techbloc/techrec.git /opt/techrec
 RUN virtualenv --python=python2 /opt/virtualenv
 RUN /opt/virtualenv/bin/pip install -r /opt/techrec/server/requirements.txt
 RUN mkdir /opt/db

+ 1 - 1
techrec/forge.py

@@ -106,7 +106,7 @@ def create_mp3(start, end, outfile, options={}, **kwargs):
         metadata["ENCODINGTIME"] = datetime.now().replace(microsecond=0).isoformat()
     else:
         metadata["DATE"] = start.replace(microsecond=0).isoformat()
-    metadata["ENCODER"] = "https://github.com/boyska/techrec"
+    metadata["ENCODER"] = "https://git.lattuga.net/techbloc/techrec"
     if "title" in options:
         metadata["TITLE"] = options["title"]
     if options.get("license_uri", None) is not None: