-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct formatting and spacing in README.md (#370)
- Loading branch information
1 parent
14f1ec9
commit 7497851
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
## Laravel Website | ||
# Laravel Website | ||
|
||
This is the source of the official [Laravel website](https://laravel.com). | ||
|
||
## 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 out of your `~/Sites` directory: | ||
|
||
1. Fork this repository | ||
1. Fork this repository | ||
2. Open your terminal and `cd` to your `~/Sites` folder | ||
3. Clone your fork into the `~/Sites/laravel` folder, by running the following command *with your username placed into the {username} slot*: | ||
|
||
```bash | ||
git clone [email protected]:{username}/laravel.com laravel | ||
``` | ||
|
||
4. CD into the new directory you just created: | ||
|
||
```bash | ||
cd laravel | ||
``` | ||
|
||
5. Run the `setup.sh` bin script, which will take all the steps necessary to prepare your local install: | ||
|
||
```bash | ||
./bin/setup.sh | ||
``` | ||
|
||
### Torchlight Integration | ||
|
||
This project relies on Torchlight for syntax highlighting. You will need to create an account at [torchlight.dev](https://torchlight.dev/) and generate a free personal token for use in this project. Once generated, add your token to your .env file: | ||
|
@@ -29,7 +34,7 @@ This project relies on Torchlight for syntax highlighting. You will need to crea | |
TORCHLIGHT_TOKEN=your-torchlight-token | ||
``` | ||
|
||
### Syncing Upstream Changes Into Your Fork | ||
### Syncing Upstream Changes Into Your Fork | ||
|
||
This [GitHub article](https://help.github.com/en/articles/syncing-a-fork) provides instructions on how to pull the latest changes from this repository into your fork. | ||
|
||
|