This repository allows you to create a Laravel project on Ubuntu. Before getting started, ensure that you have the following basic installations:
- Composer
- Mysql
- PHP ...
- If you want to create the database with create the project!! Follow below step:
- Create a MySQL configuration file (e.g., ~/.my.cnf) if it doesn't already exist. You can do this using a text editor:
nano ~/.my.cnf
- Add the following content to the configuration file, replacing
your_mysql_username
with your MySQL username andyour_mysql_password
with your MySQL password:
[client]
user=your_mysql_username
password=your_mysql_password
Make sure to set the permissions of this file to be secure, so only you can read it:
chmod 600 ~/.my.cnf
Feel free to further clarify or expand upon your instructions as needed.