Skip to content

shopperlabs/laravelshopper.dev

Repository files navigation

Laravel Shopper Logo

Laravel Shopper Website

This is the source of the official Laravel Shopper.

Local Development

If you want to work on this project on your local machine, you may follow the instructions below. These instructions assume you are serving the site using Laravel Valet or Laravel Herd out of your ~/Sites directory:

  1. Fork this repository
  2. Open your terminal and cd to your ~/Sites folder
  3. Clone your fork into the ~/Sites/laravelshopper.dev folder, by running the following command with your username placed into the {username} slot:
     git clone [email protected]:{username}/laravelshopper.dev laravelshopper.dev
  4. CD into the new directory you just created.
  5. Run the setup.sh bin script, which will take all the steps necessary to prepare your local installation:
    ./bin/setup.sh

Torchlight Integration

This project relies on Torchlight for syntax highlighting. You will need to create an account at torchlight.dev and generate a free personal token for use in this project. Once generated, add your token to your .env file:

TORCHLIGHT_TOKEN=your-torchlight-token

Syncing Upstream Changes Into Your Fork

This GitHub article provides instructions on how to pull the latest changes from this repository into your fork.

Updating After Remote Code Changes

If you pull down the upstream changes from this repository into your local repository, you'll want to update your Composer and NPM dependencies, as well as update your documentation branches. For convenience, you may run the bin/update.sh script to update these things:

./bin/update.sh

Important Links