about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2023-01-17T18·20+0300
committerclbot <clbot@tvl.fyi>2023-01-17T18·23+0000
commitaa96e25bbc96d81ffe546ffac76d9b04bef12811 (patch)
tree9bdf45a782974d8374cdc95d7ec6bbca59cee537
parent0cbdfffea22eb0bad38dad6f91f1c6f8e445651f (diff)
chore(tazjin/predlozhnik): move to //corp r/5678
This is currently hosted by the company, and I'm assigning my
copyright to the company, which also runs an ad placement on the page.

Note that the NixOS module for hosting it has not been moved yet.

Change-Id: Iba9e1cab9370faa79e43c3344fbfbbbabead50b3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7857
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--corp/russian/README.md9
-rw-r--r--corp/russian/predlozhnik/.gitignore (renamed from users/tazjin/predlozhnik/.gitignore)0
-rw-r--r--corp/russian/predlozhnik/Cargo.lock (renamed from users/tazjin/predlozhnik/Cargo.lock)0
-rw-r--r--corp/russian/predlozhnik/Cargo.toml (renamed from users/tazjin/predlozhnik/Cargo.toml)0
-rw-r--r--corp/russian/predlozhnik/default.nix (renamed from users/tazjin/predlozhnik/default.nix)0
-rw-r--r--corp/russian/predlozhnik/index.css (renamed from users/tazjin/predlozhnik/index.css)0
-rw-r--r--corp/russian/predlozhnik/index.html (renamed from users/tazjin/predlozhnik/index.html)0
-rw-r--r--corp/russian/predlozhnik/src/main.rs (renamed from users/tazjin/predlozhnik/src/main.rs)0
-rw-r--r--users/tazjin/nixos/modules/predlozhnik.nix2
9 files changed, 10 insertions, 1 deletions
diff --git a/corp/russian/README.md b/corp/russian/README.md
new file mode 100644
index 0000000000..23c3d594c8
--- /dev/null
+++ b/corp/russian/README.md
@@ -0,0 +1,9 @@
+//corp/russian
+==============
+
+This folder contains TVL corp projects related to the Russian
+language, such as the code powering
+[Предложник](https://predlozhnik.ru).
+
+Unless otherwise specified, all rights to these projects are reserved
+by ООО "ТВЛ".
diff --git a/users/tazjin/predlozhnik/.gitignore b/corp/russian/predlozhnik/.gitignore
index 58eaf3e326..58eaf3e326 100644
--- a/users/tazjin/predlozhnik/.gitignore
+++ b/corp/russian/predlozhnik/.gitignore
diff --git a/users/tazjin/predlozhnik/Cargo.lock b/corp/russian/predlozhnik/Cargo.lock
index 131aa134fe..131aa134fe 100644
--- a/users/tazjin/predlozhnik/Cargo.lock
+++ b/corp/russian/predlozhnik/Cargo.lock
diff --git a/users/tazjin/predlozhnik/Cargo.toml b/corp/russian/predlozhnik/Cargo.toml
index 90205bc4fb..90205bc4fb 100644
--- a/users/tazjin/predlozhnik/Cargo.toml
+++ b/corp/russian/predlozhnik/Cargo.toml
diff --git a/users/tazjin/predlozhnik/default.nix b/corp/russian/predlozhnik/default.nix
index 2137be1112..2137be1112 100644
--- a/users/tazjin/predlozhnik/default.nix
+++ b/corp/russian/predlozhnik/default.nix
diff --git a/users/tazjin/predlozhnik/index.css b/corp/russian/predlozhnik/index.css
index 3529574c4f..3529574c4f 100644
--- a/users/tazjin/predlozhnik/index.css
+++ b/corp/russian/predlozhnik/index.css
diff --git a/users/tazjin/predlozhnik/index.html b/corp/russian/predlozhnik/index.html
index 6af1adc0bf..6af1adc0bf 100644
--- a/users/tazjin/predlozhnik/index.html
+++ b/corp/russian/predlozhnik/index.html
diff --git a/users/tazjin/predlozhnik/src/main.rs b/corp/russian/predlozhnik/src/main.rs
index e267c849de..e267c849de 100644
--- a/users/tazjin/predlozhnik/src/main.rs
+++ b/corp/russian/predlozhnik/src/main.rs
diff --git a/users/tazjin/nixos/modules/predlozhnik.nix b/users/tazjin/nixos/modules/predlozhnik.nix
index df402ce299..db20963df1 100644
--- a/users/tazjin/nixos/modules/predlozhnik.nix
+++ b/users/tazjin/nixos/modules/predlozhnik.nix
@@ -3,7 +3,7 @@
 
 {
   services.nginx.virtualHosts."predlozhnik.ru" = {
-    root = depot.users.tazjin.predlozhnik;
+    root = depot.corp.russian.predlozhnik;
     enableACME = true;
     forceSSL = true;
   };