You can install MySQL from multiple places. You can install it using Xampp, for example. Download it from here >>After you download it, make sure the MySQL and Apache services are running in the console, then head over to localhost/phpmyadmin or 127.0.0.1/phpmyadmin and create a new database using the UI.
As an alternative to MySQL, Chartbrew now supports PostgreSQL. After you download & install Postgres, you will have to create a new database that Chartbrew can use. You can create a new database using:
The environment variables below need to be set in the .env file in the root folder. If the file is not there, create it yourself and use the .env-template file as a guide.
Copy
### PRODUCTIONCB_DB_NAME= # Database nameCB_DB_USERNAME= # Database usernameCB_DB_PASSWORD= # Database passwordCB_DB_HOST= # Database hostCB_DB_PORT= # The port on which your database server runsCB_DB_DIALECT= # 'mysql' or `postgres`# If your database requires an SSL connectionCB_DB_CERT= # String format of the certificate ### DEVELOPMENTCB_DB_NAME_DEV= # Database nameCB_DB_USERNAME_DEV= # Database usernameCB_DB_PASSWORD_DEV= # Database passwordCB_DB_HOST_DEV= # Database hostCB_DB_PORT_DEV= # The port on which your database server runsCB_DB_DIALECT_DEV= # 'mysql' or `postgres`# If your database requires an SSL connectionCB_DB_CERT_DEV= # String format of the certificate