mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
- 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.
11 lines
369 B
TypeScript
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
|
|
};
|