JROCBABY
JROCBABY
DTDrizzle Team
Created by JROCBABY on 3/22/2025 in #help
Double Slash in Path Causes ENOENT Error When Running Migrations in Docker
Here is an example
const fs = require('fs');
const path = require('path');

// Mock the file content
fs.writeFileSync('0000_snapshot.json', JSON.stringify({ key: 'value' }));

// Simulate the `it` variable (path to the snapshot file)
const it = './0000_snapshot.json';

// Normalize the path
const normalizedPath = path.normalize(`./${it}`);

console.log('Original Path:', it);
console.log('Normalized Path:', normalizedPath);

// Try to read the file
try {
const raw2 = JSON.parse(fs.readFileSync(normalizedPath).toString());
console.log('File read successfully:', raw2);
} catch (error) {
console.error('Error reading file:', error);
}
const fs = require('fs');
const path = require('path');

// Mock the file content
fs.writeFileSync('0000_snapshot.json', JSON.stringify({ key: 'value' }));

// Simulate the `it` variable (path to the snapshot file)
const it = './0000_snapshot.json';

// Normalize the path
const normalizedPath = path.normalize(`./${it}`);

console.log('Original Path:', it);
console.log('Normalized Path:', normalizedPath);

// Try to read the file
try {
const raw2 = JSON.parse(fs.readFileSync(normalizedPath).toString());
console.log('File read successfully:', raw2);
} catch (error) {
console.error('Error reading file:', error);
}
2 replies
DTDrizzle Team
Created by JROCBABY on 3/21/2025 in #help
TypeScript Error: Circular Reference in Drizzle ORM Schema
@Maston I've used selfRef foreignKey is that alright too?
3 replies