aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-30 03:54:31 -0700
committerFuwn <[email protected]>2022-03-30 03:54:31 -0700
commit8ff911b6db0ca520fc5c2601f5327bff301683ea (patch)
tree95769d870419573f72dd4acc6540334b74ef6aa3
parentformat(main): rustfmt (diff)
downloadlocus-8ff911b6db0ca520fc5c2601f5327bff301683ea.tar.xz
locus-8ff911b6db0ca520fc5c2601f5327bff301683ea.zip
fix: reverts
-rw-r--r--.env1
-rw-r--r--Makefile.toml12
2 files changed, 5 insertions, 8 deletions
diff --git a/.env b/.env
deleted file mode 100644
index 6156f5a..0000000
--- a/.env
+++ /dev/null
@@ -1 +0,0 @@
-PORT=1965
diff --git a/Makefile.toml b/Makefile.toml
index 2269370..80be522 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -25,8 +25,6 @@ dependencies = ["fmt", "check"]
[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
-# openssl req -x509 -newkey rsa:4096 -keyout windmark_private.pem -out windmark_public.pem -days 365
-
[tasks.genkey]
command = "openssl"
args = [
@@ -36,9 +34,9 @@ args = [
"-new",
"-nodes",
"-keyout",
- "windmark_private.pem",
+ "locus_private.pem",
"-out",
- "windmark_public.pem",
+ "locus_public.pem",
"-subj",
"/CN=fuwn.me"
]
@@ -51,11 +49,11 @@ args = [
"-days",
"365",
"-in",
- "windmark_public.pem",
+ "locus_public.pem",
"-signkey",
- "windmark_private.pem",
+ "locus_private.pem",
"-out",
- "windmark_pair.pem"
+ "locus_pair.pem"
]
[tasks.run]