We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1cc95f commit 2803e5eCopy full SHA for 2803e5e
2 files changed
.gitignore
@@ -42,4 +42,4 @@ yarn-error.log*
42
*.env.*
43
44
*.dev.yml
45
-
+tmp
scripts/setup-ssl-certs.js
@@ -1,7 +1,6 @@
1
/* eslint-disable no-console */
2
import { writeFileSync, mkdirSync } from 'node:fs';
3
import { join } from 'node:path';
4
-import { tmpdir } from 'node:os';
5
6
/**
7
* Setup SSL certificates from base64-encoded environment variables
@@ -19,7 +18,7 @@ const setupSSLCerts = () => {
19
18
}
20
21
// Create a temporary directory for certificates
22
- const certDir = join(tmpdir(), 'postgresql-certs');
+ const certDir = 'tmp/postgresql-certs';
23
24
try {
25
mkdirSync(certDir, { recursive: true });
0 commit comments