Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
csev committed Sep 2, 2021
1 parent 3f2a8b7 commit f60292f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ will need different commands):
CREATE USER 'ltiuser'@'127.0.0.1' IDENTIFIED BY 'ltipassword';
GRANT ALL ON tsugi.* TO 'ltiuser'@'127.0.0.1';

Or

CREATE DATABASE ltiuser DEFAULT CHARACTER SET utf8;
GRANT ALL ON tsugi.* TO ltiuser@'localhost';
GRANT ALL ON tsugi.* TO ltiuser@'127.0.0.1';
SET PASSWORD FOR 'ltiuser'@'localhost' = PASSWORD('ltipassword');
SET PASSWORD FOR 'ltiuser'@'127.0.0.1' = PASSWORD('ltipassword');

* Copy the file config-dist.php to config.php and edit the file
to put in the appropriate values. Make sure to change all the secrets.
If you are just getting started turn on DEVELOPER mode so you can launch
Expand Down

0 comments on commit f60292f

Please sign in to comment.