Compare commits
2 Commits
209ecd91fe
...
a1786688b8
Author | SHA1 | Date |
---|---|---|
Charlotte Som | a1786688b8 | |
Charlotte Som | 849a04e82a |
|
@ -1,10 +1,15 @@
|
|||
import "dotenv/config";
|
||||
"use strict"
|
||||
|
||||
import { envStr } from "@atproto/common";
|
||||
import { PDS, envToCfg, envToSecrets, readEnv } from "@atproto/pds";
|
||||
import pkg from "@atproto/pds/package.json" with { type: "json" };
|
||||
require("dotenv").config();
|
||||
|
||||
import process from "node:process";
|
||||
const { envStr } = require("@atproto/common");
|
||||
const { PDS, envToCfg, envToSecrets, readEnv } = require("@atproto/pds");
|
||||
const pkg = require("@atproto/pds/package.json");
|
||||
|
||||
const slurs = require("@atproto/pds/dist/handle/explicit-slurs.js")
|
||||
slurs.hasExplicitSlur = () => false;
|
||||
|
||||
const process = require("node:process")
|
||||
|
||||
const main = async () => {
|
||||
const env = readEnv();
|
Loading…
Reference in New Issue