Page MenuHomePhabricator

Update install section into actionable commands
Open, Needs TriagePublicBUG REPORT

Description

This project is a Django + VueJS project. New devs should get an easier way to get things running.
The install section is too literary and not instructional "run this command". So I asked ChatGPT 3.5 about the MariaDB install :

Hello Mentor, could you give me the commands to do the following task ? Please group all the command in one code snippet with comments on the right side of the command.

Create the MariaDB database

  • Create a database (default: lingualibre)
  • Create a MariaDB user (default: lingualibre@localhost)
  • Grant all privileges on this database to the user
# Connect to the MariaDB server 
mysql -u username -p  password                                     # replace 'username' and 'password' with your relevant values

CREATE DATABASE lingualibre;
CREATE USER 'lingualibre'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON lingualibre.* TO 'lingualibre'@'localhost';
FLUSH PRIVILEGES;

EXIT;

Test, confirm, and add this to the README.md

Event Timeline

Yug added a subscriber: Poslovitch.

cc @Poslovitch : this simple change may expand on boarding capability, especially for front devs.