Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 216 Bytes

Setup.md

File metadata and controls

13 lines (8 loc) · 216 Bytes

Setup

Database

mysql -u root -p

create database cryptex;
CREATE USER 'cryptex_user'@'localhost' IDENTIFIED BY 'cryptex_pass';
GRANT ALL PRIVILEGES ON cryptex . * TO 'cryptex_user'@'localhost';