Skip to content

Commit

Permalink
💄 add docs for custom styles of Java Forum Stuttgart
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Jul 13, 2024
1 parent 24d1f6a commit e8a3802
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,23 @@ The following table contains the CSS variables you can modify to change the user
| --social-post-background-color | #84ddee | The color for the background of social posts. |
| --social-post-border | none | The border for the social posts. |

The custom styles of some events are documented below.

#### Java Forum Stuttgart

```
--event-background-color:#FCB913;
--event-text-color: #000000;
--event-running-session-color: #FFF8DD;
--event-next-session-color: #FFF8DD;
--event-closed-room-color: #FFF8DD;
--event-room-border: 1px solid #000000;
--social-background-color: #FFF8DD;
--social-text-color: #000000;
--social-post-background-color: #FFFFFF;
--social-post-border: 1px solid #FCB913;
```

### Create Hashed Password

For security reasons the password is not stored in cleartext. *Apus* requires the password to be hashed using [bcrypt](https://en.wikipedia.org/wiki/Bcrypt). Of course, *Apus* can do this for you. Start the JAR file providing the parameter `-p` followed by the password you want to create a hash for. The output will show you two lines of code. The first line contains the hashed password and the second line contains the same hashed password, but with the dollar signs escaped ready to copy and paste it into a `docker-compose.yaml`. Example:
Expand Down

0 comments on commit e8a3802

Please sign in to comment.