Welcome to the Marmite project! This README will guide you through the setup and configuration process.
To get started with the Marmite project, follow these steps:
Make sure you have the following installed:
- Clone the repository:
git clone https://github.com/yourusername/marmite.git
cd marmite
- Install the dependencies:
composer install
Before running the project, you need to create and configure the .env
file.
- Create a
.env
file in the root directory of the project:
cp .env.example .env
- Open the
.env
file and add the necessary environment variables. For example:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_password
Make sure to replace your_database
, your_username
, and your_password
with your actual configuration values.
- Generate an application key:
php artisan key:generate
To start the project, run:
php artisan serve
We welcome contributions! Please read our contributing guidelines for more information.
This project is licensed under the MIT License. See the LICENSE file for details.
Laravel Sail provides a simple command-line interface for interacting with Laravel's default Docker configuration.
- Start the Docker containers:
./vendor/bin/sail up
- Run the project:
./vendor/bin/sail artisan serve
For more information on Laravel Sail, refer to the official documentation.