Remove dupe reaction, log duplicates instead
The 🔁 emoji was being added for duplicate rides. Now we just log the duplicate server-side without adding any reaction to the message. Signed-off-by: Blake Ridgway <blake@blakeridgway.com>
This commit is contained in:
9
Makefile
9
Makefile
@@ -97,6 +97,10 @@ deploy-env:
|
||||
$(SSH) "chmod 600 $(JAIL_ROOT)/var/db/$(JAIL_NAME)/.env && \
|
||||
chown 1001:1001 $(JAIL_ROOT)/var/db/$(JAIL_NAME)/.env"
|
||||
|
||||
# Pull .env from the jail to the local directory
|
||||
pull-env:
|
||||
$(SSH) "cat $(JAIL_ROOT)/var/db/$(JAIL_NAME)/.env" > .env
|
||||
|
||||
start:
|
||||
$(SSH) "rm -f $(JAIL_ROOT)/var/run/$(JAIL_NAME).pid && \
|
||||
jexec $(JAIL_NAME) service $(JAIL_NAME) start"
|
||||
@@ -126,6 +130,11 @@ dns-fix:
|
||||
@echo "=== New jail DNS ==="
|
||||
$(SSH) "cat /jails/$(JAIL_NAME)/etc/resolv.conf"
|
||||
|
||||
# ── Database Backfill ──────────────────────────────────────────────────────────
|
||||
backfill:
|
||||
@echo "=== Backfilling stale usernames ==="
|
||||
$(SSH) "sh -s" < scripts/backfill-usernames.sh
|
||||
|
||||
clean:
|
||||
rm -f $(BINARY)
|
||||
go clean
|
||||
|
||||
Reference in New Issue
Block a user