|
@@ -4,9 +4,17 @@ The base Django project of a service web application to which other modules are
|
|
|
|
|
|
## Installation / Upgrade
|
|
|
|
|
|
-Download or clone repository. For the initial configuration, run *bin/install.sh*.
|
|
|
+Download or clone repository. For the initial/update project configuration, run *bin/install.sh*.
|
|
|
|
|
|
-During the installation, you can pass the `--test-users` parameter to automatically create test users. These users will be assigned to the **TEST** group. Additionally, if the `DEBUG` setting is enabled (`DEBUG=True` in *core/settings_vars.py*), these test users will be marked as active and can log in. If `DEBUG` is disabled (`DEBUG=False`), the users will be inactive and unable to log in.
|
|
|
+### Test Users
|
|
|
+
|
|
|
+During the installation/upgrade, you can pass the `--test-users` parameter to automatically create test users. These users will be assigned to the **TEST** group. Additionally, if the `DEBUG` setting is enabled (`DEBUG=True` in *core/settings_vars.py*), these test users will be marked as active and can log in. If `DEBUG` is disabled (`DEBUG=False`), the users will be inactive and unable to log in.
|
|
|
+
|
|
|
+#### Properties
|
|
|
+
|
|
|
+- **Username:** `test-<group_name>-<ordinal_number_in_group>`.
|
|
|
+- **Phone number:** `<group_id>0<ordinal_number_in_group>`.
|
|
|
+- **Password:** All test users share the same password: `sharix-open-test`.
|
|
|
|
|
|
```bash
|
|
|
./bin/install.sh --test-users
|