@@ -20,7 +20,7 @@ Initial Project Setup
20
20
To get started, you'll need to download Symfony and initialize your local
21
21
git repository:
22
22
23
- 1 . Download the `Symfony2 Standard Edition `_ using Composer:
23
+ # . Download the `Symfony2 Standard Edition `_ using Composer:
24
24
25
25
.. code-block :: bash
26
26
@@ -30,7 +30,7 @@ git repository:
30
30
required vendor libraries. For more information about downloading Symfony using
31
31
Composer, see `Installing Symfony using Composer `_.
32
32
33
- 2 . Your project folder will now contain files of the Symfony framework, as well
33
+ # . Your project folder will now contain files of the Symfony framework, as well
34
34
as files and folders for vendor libraries. You'll want to store your project
35
35
files in Git, but not the dependencies, since they will be managed by Composer.
36
36
You'll also want to keep your ``parameters.yml `` out of your repository as it will
@@ -51,19 +51,19 @@ git repository:
51
51
in which case, you can find more information here: `Github .gitignore `_
52
52
This way you can exclude files/folders often used by your IDE for all of your projects.
53
53
54
- 3 . Initialize your Git repository:
54
+ # . Initialize your Git repository:
55
55
56
56
.. code-block :: bash
57
57
58
58
$ git init
59
59
60
- 4 . Add all of the initial files to Git:
60
+ # . Add all of the initial files to Git:
61
61
62
62
.. code-block :: bash
63
63
64
64
$ git add .
65
65
66
- 5 . Create an initial commit with your started project:
66
+ # . Create an initial commit with your started project:
67
67
68
68
.. code-block :: bash
69
69
0 commit comments