Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
#!/usr/bin/env node
|
|
const { Client } = require("pg");
|
|
const crypto = require("crypto");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
const nextAuthSecret =
|
|
process.env.NEXTAUTH_SECRET ||
|
|
fs.readFileSync(path.resolve(__dirname, "../secrets/nextauth_secret"), "utf8").trim();
|
|
|
|
const password = process.env.NEW_PASSWORD || "TempPass123!";
|
|
const saltBytes = Number(process.env.SALT_BYTES) || 12;
|
|
const iterations = Number(process.env.ITERATIONS) || 10000;
|
|
const keyLength = Number(process.env.KEY_LENGTH) || 64;
|
|
const digest = process.env.ALGORITHM || "sha512";
|
|
|
|
const salt = crypto.randomBytes(saltBytes).toString("hex");
|
|
const hash = crypto
|
|
.pbkdf2Sync(password, nextAuthSecret + salt, iterations, keyLength, digest)
|
|
.toString("hex");
|
|
const combined = `${salt}:${hash}`;
|
|
|
|
const client = new Client({
|
|
host: process.env.DB_HOST || "postgres",
|
|
port: Number(process.env.DB_PORT) || 5432,
|
|
user: process.env.DB_USER_ADMIN || "postgres",
|
|
password: process.env.DB_PASSWORD_ADMIN || "postpass123",
|
|
database: process.env.DB_NAME_SERVER || "server",
|
|
});
|
|
|
|
async function main() {
|
|
await client.connect();
|
|
await client.query("UPDATE users SET hashed_password = $1 WHERE email = $2", [
|
|
combined,
|
|
"robert@managedminds.ai",
|
|
]);
|
|
await client.end();
|
|
console.log("Updated password for robert@managedminds.ai to", password);
|
|
}
|
|
|
|
main().catch(async (error) => {
|
|
console.error("Failed to update password", error);
|
|
try {
|
|
await client.end();
|
|
} catch (endError) {
|
|
// ignore
|
|
}
|
|
process.exit(1);
|
|
});
|