Skip to content

Commit 48ac01d

Browse files
committed
Fix markdown
1 parent a5e1c34 commit 48ac01d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@ export JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-21.jdk/Contents/Home/
2121
```
2222

2323
MariaDB and Mailpit in docker for local development
24+
2425
```bash
2526
docker compose up -d
2627
```
2728

2829
Then create the MySQL database:
30+
2931
```sql
3032
DROP DATABASE IF EXISTS invite;
3133
CREATE DATABASE invite CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
3234
CREATE USER 'invite'@'%' IDENTIFIED BY 'secret';
3335
GRANT ALL privileges ON `invite`.* TO 'invite'@'%';
3436
```
37+
3538
Note: for MariaDB `COLLATE utf8mb4_0900_ai_ci` might not work and can be left out
3639

3740
### [Building and running](#building-and-running)
@@ -43,11 +46,13 @@ This project uses Spring Boot and Maven. To run locally, type:
4346
```
4447

4548
Install frontend dependencies
49+
4650
```bash
4751
(cd client && yarn)
4852
```
4953

5054
Run frontend
55+
5156
```bash
5257
(cd client && yarn start)
5358
```
@@ -156,6 +161,7 @@ openssl pkcs8 -topk8 -in private_key.pem -inform pem -out private_key_pkcs8.pem
156161
```
157162

158163
## Deploy
164+
159165
To build and deploy (the latter requires credentials in your maven settings):
160166

161167
```bash

0 commit comments

Comments
 (0)