drop dotenv, upd pkg hash :earnest:
This commit is contained in:
parent
8872d127a9
commit
6670b57674
6 changed files with 12 additions and 17 deletions
|
|
@ -25,7 +25,7 @@
|
|||
# uncomment this and let the build fail, then get the current hash
|
||||
# very scuffed but endorsed!
|
||||
# npmDepsHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
|
||||
npmDepsHash = "sha256-11AayHpPu7ocBPRB5k4SU7b99Aqc/dufAy2Yg5oPvGE=";
|
||||
npmDepsHash = "sha256-7DsCZ+wDLvpqBch2rVbXiSxIaYdITX3RCHfjNx0wUKs=";
|
||||
|
||||
nativeBuildInputs = with pkgs; [ makeWrapper ];
|
||||
|
||||
|
|
|
|||
13
package-lock.json
generated
13
package-lock.json
generated
|
|
@ -14,7 +14,6 @@
|
|||
"callsites": "^4.2.0",
|
||||
"chalk": "^5.4.1",
|
||||
"data-uri-to-buffer": "^6.0.2",
|
||||
"dotenv": "^17.2.1",
|
||||
"drizzle-orm": "^0.44.4",
|
||||
"express": "^5.1.0",
|
||||
"express-handlebars": "^8.0.3",
|
||||
|
|
@ -2797,18 +2796,6 @@
|
|||
"node": ">=6.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/dotenv": {
|
||||
"version": "17.2.1",
|
||||
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.1.tgz",
|
||||
"integrity": "sha512-kQhDYKZecqnM0fCnzI5eIv5L4cAe/iRI+HqMbO/hbRdTAeXDG+M9FjipUxNfbARuEg4iHIbhnhs78BCHNbSxEQ==",
|
||||
"license": "BSD-2-Clause",
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://dotenvx.com"
|
||||
}
|
||||
},
|
||||
"node_modules/drizzle-kit": {
|
||||
"version": "0.31.4",
|
||||
"resolved": "https://registry.npmjs.org/drizzle-kit/-/drizzle-kit-0.31.4.tgz",
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@
|
|||
"callsites": "^4.2.0",
|
||||
"chalk": "^5.4.1",
|
||||
"data-uri-to-buffer": "^6.0.2",
|
||||
"dotenv": "^17.2.1",
|
||||
"drizzle-orm": "^0.44.4",
|
||||
"express": "^5.1.0",
|
||||
"express-handlebars": "^8.0.3",
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ import fsPromises from "fs/promises";
|
|||
import { and, eq } from "drizzle-orm";
|
||||
import * as log from "./log.js";
|
||||
import prettyBytes from "pretty-bytes";
|
||||
import process from "node:process";
|
||||
|
||||
// try creating cache if it doesn't exist
|
||||
// a bit scuffed but that ok
|
||||
|
|
|
|||
|
|
@ -2,10 +2,17 @@ import fs from "node:fs";
|
|||
import * as log from "./log.js";
|
||||
import toml from "toml";
|
||||
import { z, ZodError, ZodObject } from "zod";
|
||||
import * as dotenv from "dotenv";
|
||||
import { fromZodError } from "zod-validation-error";
|
||||
import process from "node:process";
|
||||
|
||||
dotenv.config({ quiet: true });
|
||||
try {
|
||||
process.loadEnvFile("./.env");
|
||||
} catch (err) {
|
||||
if (err instanceof Error && !err.message.includes("ENOENT")) {
|
||||
log.error("error reading or parsing evv file!");
|
||||
log.error(err);
|
||||
}
|
||||
}
|
||||
|
||||
const configSchema = z.object({
|
||||
server: z.object({
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ import { createClient } from "@libsql/client";
|
|||
import { config, env } from "../config.js";
|
||||
import { drizzle } from "drizzle-orm/libsql";
|
||||
import { migrate } from "drizzle-orm/libsql/migrator";
|
||||
import process from "node:process";
|
||||
import fsPromises from "fs/promises";
|
||||
import * as log from "../log.js";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue