stack/stack.config.ts
mantrakp04 c1a15ff470 Enhance local emulator configuration and file management
- Updated `stack.config.ts` to enable password sign-in for authentication.
- Refactored `config.tsx` to include functionality for writing configuration changes back to the local emulator's config file.
- Introduced `writeConfigToFile` and `getLocalEmulatorFilePath` functions in `local-emulator.ts` to improve file handling and path resolution.
- Enhanced `run-emulator.sh` to support mounting the host filesystem, facilitating better integration with the local environment.

These changes improve the local emulator's configuration management and usability for developers.
2026-03-18 21:11:04 -07:00

11 lines
369 B
TypeScript

export const config = {
"apps.installed.authentication.enabled": true,
"apps.installed.emails.enabled": true,
"apps.installed.teams.enabled": true,
"apps.installed.rbac.enabled": true,
"apps.installed.api-keys.enabled": true,
"apps.installed.webhooks.enabled": true,
"apps.installed.launch-checklist.enabled": true,
"auth.password.allowSignIn": true
};