Skip to content

Commit 664f583

Browse files
committed
added required privileges to readme.md
1 parent 1183f2c commit 664f583

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ Requirements & Configuration
2828
- You _must_ change [web interface credentials](src/main/resources/config/prod/main.properties#L9-L10)
2929
- You _can_ access the application via HTTPS, by [enabling it and setting the keystore properties](src/main/resources/config/prod/main.properties#L23-L26)
3030

31+
* the following PRIVILEGES are required:
32+
```
33+
GRANT ALL PRIVILEGES ON stevedb.* TO 'steve'@'localhost' IDENTIFIED BY 'password';
34+
GRANT SELECT ON mysql.proc TO 'steve'@'localhost' IDENTIFIED BY 'password';
35+
GRANT SUPER ON *.* TO 'steve'@'localhost' IDENTIFIED BY 'password';
36+
```
37+
3138
How to use?
3239
-----
3340

0 commit comments

Comments
 (0)