[Misc] Move to org

This commit is contained in:
Earlopain 2023-01-23 20:43:56 +01:00
parent 14f49ed2d0
commit 8b28393596
No known key found for this signature in database
GPG Key ID: 6CFB948E15246897
5 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@ gem 'bcrypt', :require => "bcrypt"
gem 'draper'
gem 'streamio-ffmpeg'
gem 'responders'
gem 'dtext_rb', :git => "https://github.com/zwagoth/dtext_rb.git", branch: "master", :require => "dtext"
gem 'dtext_rb', :git => "https://github.com/e621ng/dtext_rb.git", branch: "master", :require => "dtext"
gem 'cityhash'
gem 'memoist'
gem 'bootsnap'

View File

@ -1,5 +1,5 @@
GIT
remote: https://github.com/zwagoth/dtext_rb.git
remote: https://github.com/e621ng/dtext_rb.git
revision: 978640b904ed359c0903b3b24affaea38eff97f0
branch: master
specs:

View File

@ -18,7 +18,7 @@ To mitigate this you can install a WSL distribution and clone the project inside
### Installation
1. Download and install the [prerequisites](#prerequisites).
1. Clone the repo with `git clone https://github.com/zwagoth/e621ng.git`.
1. Clone the repo with `git clone https://github.com/e621ng/e621ng.git`.
1. `cd` into the repo.
1. Copy the sample environment file with `cp .env.sample .env`.
1. Uncomment the `COMPOSE_PROFILES` variable if you wish to use solargraph. Doesn't work on Windows without WSL.

View File

@ -52,7 +52,7 @@ module Danbooru
end
def source_code_url
"https://github.com/zwagoth/e621ng"
"https://github.com/e621ng/e621ng"
end
def commit_url(hash)

View File

@ -1,6 +1,6 @@
FROM ruby:2.7.3-alpine
ADD https://api.github.com/repos/zwagoth/iqdbs/git/refs/heads/master /tmp/iqdbs_version.json
ADD https://api.github.com/repos/e621ng/iqdbs/git/refs/heads/master /tmp/iqdbs_version.json
COPY iqdb.patch /tmp/iqdb.patch
ENV IQDB_VERSION=20161008
ENV IQDB_CHECKSUM=daa4812b35f84bc7e2f07661fd9abf73a06738c76beb92252666a86ebaea3c64
@ -16,7 +16,7 @@ RUN apk --no-cache add build-base git libjpeg-turbo-dev gd-dev bash \
&& make EXTRADEFS="-include stdint.h" -j$(nproc) \
&& cp iqdb /usr/bin \
# iqdbs
&& git clone https://github.com/zwagoth/iqdbs /iqdbs \
&& git clone https://github.com/e621ng/iqdbs /iqdbs \
&& bundler install --gemfile /iqdbs/Gemfile \
# cleanup
&& rm /tmp/iqdb-$IQDB_VERSION.tar.bz2 \