
So, in this case, 192.168.1.1 will be used as the host for the "read" connection, while 192.168.1.3 will be used for the "write" connection. You only need to place items in the read and write arrays if you wish to override the values from the main mysql array. The rest of the database options for the read and write connections will be merged from the main mysql configuration array. The read and write keys have array values containing a single key: host. Note that three keys have been added to the configuration array: read, write and sticky.

After the database has been created, you may easily configure your environment variables to point to this database by placing the absolute path to the database in the DB_DATABASE environment variable: You can create a new SQLite database using the touch command in your terminal: touch database/database.sqlite. SQLite databases are contained within a single file on your filesystem.
#SQLITE CREATE DATABASE FREE#
However, you are free to modify your database configuration as needed for your local database. Examples for most of Laravel's supported database systems are provided in this file.īy default, Laravel's sample environment configuration is ready to use with Laravel Sail, which is a Docker configuration for developing Laravel applications on your local machine. Most of the configuration options within this file are driven by the values of your application's environment variables. In this file, you may define all of your database connections, as well as specify which connection should be used by default. The configuration for Laravel's database services is located in your application's config/database.php configuration file.
