You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import path from 'path';
|
|
import process from 'process';
|
|
|
|
import { app } from 'electron';
|
|
|
|
import { start } from './base_config';
|
|
// tslint:disable: no-console
|
|
|
|
let storageProfile;
|
|
|
|
// Node makes sure all environment variables are strings
|
|
const { NODE_ENV: environment, NODE_APP_INSTANCE: instance } = process.env;
|
|
|
|
// We need to make sure instance is not empty
|
|
const isValidInstance = typeof instance === 'string' && instance.length > 0;
|
|
const isProduction = environment === 'production' && !isValidInstance;
|
|
|
|
// Use seperate data directories for each different environment and app instances
|
|
if (!isProduction) {
|
|
storageProfile = environment;
|
|
if (isValidInstance) {
|
|
storageProfile = (storageProfile || '').concat(`-${instance}`);
|
|
}
|
|
}
|
|
|
|
if (storageProfile) {
|
|
const userData = path.join(app.getPath('appData'), `Session-${storageProfile}`);
|
|
|
|
app.setPath('userData', userData);
|
|
}
|
|
|
|
console.log(`userData: ${app.getPath('userData')}`);
|
|
|
|
const userDataPath = app.getPath('userData');
|
|
const targetPath = path.join(userDataPath, 'config.json');
|
|
|
|
export const userConfig = start('user', targetPath);
|
|
|
|
export type UserConfig = typeof userConfig;
|