Skip to content

Commit

Permalink
fix: Fix configuration examples
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCizmar committed Apr 18, 2024
1 parent 217f1b0 commit c9e3307
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion platform/self_hosting/shared/_exampleEnvConfig.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```env title=".env"
TOLGEE_AUTHENTICATION_ENABLED=true
TOLGEE_AUTHENTICATION_INITIAL_PASSWORD=admin
TOLGEE_AUTHENTICATION_INITIAL_USERNAME=admin
TOLGEE_AUTHENTICATION_JWT_SECRET=my_jwt_secret
Expand All @@ -10,4 +11,4 @@ TOLGEE_SMTP_PASSWORD=omg/my/password
TOLGEE_SMTP_PORT=465
TOLGEE_SMTP_SSL_ENABLED=true
TOLGEE_SMTP_USERNAME=user@company.com
```
```
3 changes: 2 additions & 1 deletion platform/self_hosting/shared/_examplePropertiesConfig.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```properties title=application.properties
tolgee.authentication.enabled = true
tolgee.authentication.initial-password = admin
tolgee.authentication.initial-username = admin
tolgee.authentication.jwt-secret = my_jwt_secret
Expand All @@ -10,4 +11,4 @@ tolgee.smtp.password = "omg/my/password"
tolgee.smtp.port = 465
tolgee.smtp.ssl-enabled = true
tolgee.smtp.username = user@company.com
```
```
1 change: 1 addition & 0 deletions platform/self_hosting/shared/_exampleYamlConfig.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
```yaml title=config.yaml
tolgee:
authentication:
enabled: true
initial-password: admin
initial-username: admin
jwt-secret: my_jwt_secret
Expand Down

0 comments on commit c9e3307

Please sign in to comment.