MiniCodeMonkey / curbside

Find grocery store pickup slots near you
https://curb.run
MIT License
9 stars 4 forks source link

Curb Run

Stack

Development

Prerequisites

Clone the repository

git clone git@github.com:MiniCodeMonkey/curbside.git
cd curbside

Install dependencies

composer install
npm install

Configure environment

cp .env.example .env

Edit .env. You will need to at least configure a database. Want to know more about env configuration? Check out the Laravel docs.

Development server

# Run database migrations
php artisan migrate --seed

Running this will also fetch stores from each individual chains website, so it will take a few minutes to run.

# Start development server and frontend asset watcher
php artisan serve
npm run watch

Deployment

vapor deploy production