Compare commits
No commits in common. "a1786688b85f9446ae02a9c1c3f0a70780917596" and "209ecd91fe733a56a888f48d52deeb2110069f63" have entirely different histories.
a1786688b8
...
209ecd91fe
1 changed files with 5 additions and 10 deletions
|
@ -1,15 +1,10 @@
|
|||
"use strict"
|
||||
import "dotenv/config";
|
||||
|
||||
require("dotenv").config();
|
||||
import { envStr } from "@atproto/common";
|
||||
import { PDS, envToCfg, envToSecrets, readEnv } from "@atproto/pds";
|
||||
import pkg from "@atproto/pds/package.json" with { type: "json" };
|
||||
|
||||
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")
|
||||
import process from "node:process";
|
||||
|
||||
const main = async () => {
|
||||
const env = readEnv();
|
Loading…
Reference in a new issue