Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oussama-zbair/e-pharmacy

Projet de TP Qualité Logiciel : Développement d'un site web e-pharmacy en Laravel
https://github.com/oussama-zbair/e-pharmacy

Last synced: about 2 months ago
JSON representation

Projet de TP Qualité Logiciel : Développement d'un site web e-pharmacy en Laravel

Awesome Lists containing this project

README

        

# E-Pharmacy Laravel Starter

![PHP](https://img.shields.io/badge/php-%23777BB4.svg?style=for-the-badge&logo=php&logoColor=white) Laravel ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E) HTML5 CSS3 ![MySQL](https://img.shields.io/badge/mysql-4479A1.svg?style=for-the-badge&logo=mysql&logoColor=white)

A Laravel-based e-pharmacy project.

## Prerequisites

- PHP
- Composer
- Web Server (e.g., Apache, Nginx)
- Database (e.g., MySQL)

## Setup Instructions

Follow these steps to set up and run the project on your local environment:

1. **Clone the repository:**

```bash
git clone https://github.com/oussama-zbair/e-pharmacy.git
```

2. **Navigate to the project directory:**

```bash
cd e-pharmacy
```

3. **Copy the .env.example file to .env:**

```bash
cp .env.example .env
```

4. **Open the .env file in your text editor and update the DB_DATABASE field with your database details.**
5. **Install project dependencies:**

```bash
composer install
```

6. **Generate an application key:**

```bash
php artisan key:generate
```

7. Run database migrations and seed the database:

```bash
php artisan migrate:fresh --seed
```

8. Start the development server:
```bash
php artisan serve
```