File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,20 @@ export JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-21.jdk/Contents/Home/
2121```
2222
2323MariaDB and Mailpit in docker for local development
24+
2425``` bash
2526docker compose up -d
2627```
2728
2829Then create the MySQL database:
30+
2931``` sql
3032DROP DATABASE IF EXISTS invite;
3133CREATE DATABASE invite CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
3234CREATE USER 'invite '@' %' IDENTIFIED BY ' secret' ;
3335GRANT ALL privileges ON ` invite` .* TO ' invite' @' %' ;
3436```
37+
3538Note: 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
4548Install frontend dependencies
49+
4650``` bash
4751(cd client && yarn)
4852```
4953
5054Run 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+
159165To build and deploy (the latter requires credentials in your maven settings):
160166
161167``` bash
You can’t perform that action at this time.
0 commit comments