Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 662 Bytes

File metadata and controls

45 lines (29 loc) · 662 Bytes

Bidify backend codebase

This is the backend repository for the Bidify project. IT is written in PHP and uses the Laravel 10 framework.

Bidify Bidding and Auctioning flow

Installation

Clone the repository

git clone https://github.com/bidify-org/bidify.git

Install dependencies

composer install

Copy the .env.example file to .env and fill in the required information

Generate an application key

php artisan key:generate

Run the migrations

php artisan migrate

Create storage link

php artisan storage:link

Start the server

php artisan serve