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 installBefore running the project, you need to create and configure the .env file.
- Create a
.envfile in the root directory of the project:
cp .env.example .env- Open the
.envfile 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_passwordMake sure to replace your_database, your_username, and your_password with your actual configuration values.
- Generate an application key:
php artisan key:generateTo start the project, run:
php artisan serveWe 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 serveFor more information on Laravel Sail, refer to the official documentation.