Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/oussama-zbair/e-pharmacy
- Owner: oussama-zbair
- Created: 2023-10-13T18:49:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-02T16:38:30.000Z (8 months ago)
- Last Synced: 2024-05-03T02:52:32.811Z (8 months ago)
- Language: JavaScript
- Size: 24.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E) ![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
```