Skip to content

Commit c901306

Browse files
committed
minor #1501 get rid of $ so cut and paste from github page works. (tacman)
This PR was merged into the main branch. Discussion ---------- get rid of $ so cut and paste from github page works. Commits ------- f4107ea get rid of $ so cut and paste from github page works.
2 parents 50ee9b9 + f4107ea commit c901306

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ There are 3 different ways of installing this project depending on your needs:
2222
on your computer to run this command:
2323

2424
```bash
25-
$ symfony new --demo my_project
25+
symfony new --demo my_project
2626
```
2727

2828
**Option 2.** [Download Composer][6] and use the `composer` binary installed
2929
on your computer to run these commands:
3030

3131
```bash
3232
# you can create a new project based on the Symfony Demo project...
33-
$ composer create-project symfony/symfony-demo my_project
33+
composer create-project symfony/symfony-demo my_project
3434

3535
# ...or you can clone the code repository and install its dependencies
36-
$ git clone https://github.com/symfony/demo.git my_project
37-
$ cd my_project/
38-
$ composer install
36+
git clone https://github.com/symfony/demo.git my_project
37+
cd my_project/
38+
composer install
3939
```
4040

4141
**Option 3.** Click the following button to deploy this project on Platform.sh,
@@ -54,8 +54,8 @@ There's no need to configure anything before running the application. There are
5454
**Option 1.** [Download Symfony CLI][4] and run this command:
5555

5656
```bash
57-
$ cd my_project/
58-
$ symfony serve
57+
cd my_project/
58+
symfony serve
5959
```
6060

6161
Then access the application in your browser at the given URL (<https://localhost:8000> by default).
@@ -66,8 +66,8 @@ Then access the application in your browser at the given URL (<https://localhost
6666
On your local machine, you can run this command to use the built-in PHP web server:
6767

6868
```bash
69-
$ cd my_project/
70-
$ php -S localhost:8000 -t public/
69+
cd my_project/
70+
php -S localhost:8000 -t public/
7171
```
7272

7373
Tests
@@ -76,8 +76,8 @@ Tests
7676
Execute this command to run tests:
7777

7878
```bash
79-
$ cd my_project/
80-
$ ./bin/phpunit
79+
cd my_project/
80+
./bin/phpunit
8181
```
8282

8383
[1]: https://symfony.com/doc/current/best_practices.html

0 commit comments

Comments
 (0)