Skip to content

Commit

Permalink
beta for local playground [beta]
Browse files Browse the repository at this point in the history
  • Loading branch information
maorb-dev committed May 1, 2024
1 parent 1576094 commit da59341
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class EnvironmentVariablesManager extends KeyValueManager implements IKey

constructor(options?: Options) {
const dataFileName = process.env.SECRET_NAME!;
super('EnvironmentVariablesManager', dataFileName, '/secrets');
super('EnvironmentVariablesManager', dataFileName, '/Users/maorba/secrets'); // FIXME: revert
this.shouldUpdateProcessEnv = Boolean(options?.updateProcessEnv);
this.initData();
}
Expand Down
2 changes: 1 addition & 1 deletion lib/secrets-manager/secrets-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { IKeyValueManager } from 'types/key-value-manager';
export class SecretsManager extends KeyValueManager implements IKeyValueManager {
constructor() {
const dataFileName = process.env.SECRET_NAME!;
super('SecretsManager', dataFileName, '/secrets-v2');
super('SecretsManager', dataFileName, '/Users/maorba/secrets-v2'); // FIXME: revert
this.initData();
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mondaycom/apps-sdk",
"version": "3.0.4",
"version": "3.0.3-beta.3",
"description": "monday apps SDK for NodeJS",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down

0 comments on commit da59341

Please sign in to comment.