mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 03:42:16 +00:00
ci(core): Load config schema after process.env has been overwritten (no-changelog) (#7550)
This commit is contained in:
committed by
GitHub
parent
60314248f4
commit
f0fc5b16d3
@@ -16,11 +16,14 @@ type Settings = ReadOnlySettings & WritableSettings;
|
||||
|
||||
@Service()
|
||||
export class InstanceSettings {
|
||||
readonly userHome = this.getUserHome();
|
||||
private readonly userHome = this.getUserHome();
|
||||
|
||||
/** The path to the n8n folder in which all n8n related data gets saved */
|
||||
readonly n8nFolder = path.join(this.userHome, '.n8n');
|
||||
|
||||
/** The path to the folder where all generated static assets are copied to */
|
||||
readonly staticCacheDir = path.join(this.userHome, '.cache/n8n/public');
|
||||
|
||||
/** The path to the folder containing custom nodes and credentials */
|
||||
readonly customExtensionDir = path.join(this.n8nFolder, 'custom');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user