Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dmy.berezovskyi committed Oct 15, 2024
1 parent c8f567f commit 98045fc
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,19 @@ The framework supports several command-line options to customize the test execut
--slow-mo: Slow down operations by the specified milliseconds (default: 0)

## Environments
We utilize Dynaconf for settings management. Dynaconf is a powerful and flexible tool that supports multiple file formats (TOML, YAML, JSON, INI, and Python). It allows for easy management of multi-environment configurations and supports environment variables to override existing settings, including support for .env files.

--The settings are defined in the config.py file.
--To switch between environments, set the variable ENV_FOR_PW in your .env file. For example, to use the development environment, set:
We utilize Dynaconf for settings management.
Dynaconf is a powerful and flexible tool that supports multiple file formats (TOML, YAML, JSON, INI, and Python).
It allows for easy management of multi-environment configurations and supports environment variables to override existing settings, including support for .env files:
- the settings are defined in the config.py file.
- to switch between environments, set the variable ENV_FOR_PW in your .env file. For example, to use the development environment, set:
```
ENV_FOR_PW=dev
```
--Provided three possible environments:
- provided three possible environments:

- **`dev.yaml`**: Configuration for the development environment.
- **`prod.yaml`**: Configuration for the production environment.
- **`settings.yaml`**: Default configuration if `ENV_FOR_PW=dev` is not specified.
- **`dev.yaml`**: Configuration for the development environment.
- **`prod.yaml`**: Configuration for the production environment.
- **`settings.yaml`**: Default configuration if `ENV_FOR_PW=dev` is not specified.



0 comments on commit 98045fc

Please sign in to comment.