aboutsummaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-29 15:02:27 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-11-29 15:02:27 -0800
commit7c6afa0a21883dc8037f3d021246db24eef39b41 (patch)
tree3fa7c1e595248a46e88ea62c2f9f70106186b0fe /extra
parentc32154f2875a7fb9aac727013e1475cdd811e180 (diff)
downloadfatcat-7c6afa0a21883dc8037f3d021246db24eef39b41.tar.gz
fatcat-7c6afa0a21883dc8037f3d021246db24eef39b41.zip
clean up extra/ folder a bit
Diffstat (limited to 'extra')
-rw-r--r--extra/cleanups/.gitignore (renamed from extra/checks/.gitignore)0
-rwxr-xr-xextra/cleanups/check_extid.sh (renamed from extra/checks/check_extid.sh)0
-rwxr-xr-xextra/cleanups/check_hashes.sh (renamed from extra/checks/check_hashes.sh)0
-rwxr-xr-xextra/cleanups/check_issnl.sh (renamed from extra/checks/check_issnl.sh)0
-rwxr-xr-xextra/cleanups/scripts/fixup_longtail_issnl_unique.py (renamed from extra/fixups/fixup_longtail_issnl_unique.py)0
-rw-r--r--extra/deployment/collectd_statsd.conf (renamed from extra/collectd_statsd.conf)0
-rw-r--r--extra/deployment/nginx_fatcat-api (renamed from extra/nginx_fatcat-api)0
-rw-r--r--extra/deployment/nginx_fatcat-web (renamed from extra/nginx_fatcat-web)0
-rw-r--r--extra/deployment/systemd_fatcat-web.service (renamed from extra/systemd_fatcat-web.service)0
-rw-r--r--extra/deployment/uwsgi_fatcat-web.sh (renamed from extra/uwsgi_fatcat-web.sh)0
-rwxr-xr-xextra/update_gh-pages.sh24
11 files changed, 0 insertions, 24 deletions
diff --git a/extra/checks/.gitignore b/extra/cleanups/.gitignore
index 431c3bbc..431c3bbc 100644
--- a/extra/checks/.gitignore
+++ b/extra/cleanups/.gitignore
diff --git a/extra/checks/check_extid.sh b/extra/cleanups/check_extid.sh
index f74f50b6..f74f50b6 100755
--- a/extra/checks/check_extid.sh
+++ b/extra/cleanups/check_extid.sh
diff --git a/extra/checks/check_hashes.sh b/extra/cleanups/check_hashes.sh
index 94102329..94102329 100755
--- a/extra/checks/check_hashes.sh
+++ b/extra/cleanups/check_hashes.sh
diff --git a/extra/checks/check_issnl.sh b/extra/cleanups/check_issnl.sh
index a28695e7..a28695e7 100755
--- a/extra/checks/check_issnl.sh
+++ b/extra/cleanups/check_issnl.sh
diff --git a/extra/fixups/fixup_longtail_issnl_unique.py b/extra/cleanups/scripts/fixup_longtail_issnl_unique.py
index ea615a13..ea615a13 100755
--- a/extra/fixups/fixup_longtail_issnl_unique.py
+++ b/extra/cleanups/scripts/fixup_longtail_issnl_unique.py
diff --git a/extra/collectd_statsd.conf b/extra/deployment/collectd_statsd.conf
index a434ed9f..a434ed9f 100644
--- a/extra/collectd_statsd.conf
+++ b/extra/deployment/collectd_statsd.conf
diff --git a/extra/nginx_fatcat-api b/extra/deployment/nginx_fatcat-api
index 13c1da99..13c1da99 100644
--- a/extra/nginx_fatcat-api
+++ b/extra/deployment/nginx_fatcat-api
diff --git a/extra/nginx_fatcat-web b/extra/deployment/nginx_fatcat-web
index 7909b0be..7909b0be 100644
--- a/extra/nginx_fatcat-web
+++ b/extra/deployment/nginx_fatcat-web
diff --git a/extra/systemd_fatcat-web.service b/extra/deployment/systemd_fatcat-web.service
index ad8b2bec..ad8b2bec 100644
--- a/extra/systemd_fatcat-web.service
+++ b/extra/deployment/systemd_fatcat-web.service
diff --git a/extra/uwsgi_fatcat-web.sh b/extra/deployment/uwsgi_fatcat-web.sh
index 112d7857..112d7857 100644
--- a/extra/uwsgi_fatcat-web.sh
+++ b/extra/deployment/uwsgi_fatcat-web.sh
diff --git a/extra/update_gh-pages.sh b/extra/update_gh-pages.sh
deleted file mode 100755
index 2771c24e..00000000
--- a/extra/update_gh-pages.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-# Note: this script is BROKEN; the resulting docs don't have javascript search,
-# throw a javascript error, and don't include private/internal docs. Not a
-# priority right now.
-
-set -e -u -o pipefail
-
-cd rust
-cargo doc
-mkdir -p /tmp/fatcat-ghpages
-cp -r target/doc/fatcat target/doc/fatcat_openapi /tmp/fatcat-ghpages
-cd ..
-git checkout gh-pages
-mv fatcat fatcat.old_docs || true
-mv fatcat_openapi fatcat_openapi.old_docs || true
-mv /tmp/fatcat-ghpages/fatcat .
-mv /tmp/fatcat-ghpages/fatcat_openapi .
-git add fatcat fatcat_openapi
-git commit -m "updating rendered manpage for github docs" || true
-git checkout master
-rm -r /tmp/fatcat-ghpages
-
-echo "DONE"