@@ -53,20 +53,20 @@ First, download and get your Symfony project running by following the
53
53
Once you have your new project directory and things are working, follow along
54
54
with these steps:
55
55
56
- 1 . Checkout the Subversion repository that will host this project. Suppose
56
+ # . Checkout the Subversion repository that will host this project. Suppose
57
57
it is hosted on `Google code `_ and called ``myproject ``:
58
58
59
59
.. code-block :: bash
60
60
61
61
$ svn checkout http://myproject.googlecode.com/svn/trunk myproject
62
62
63
- 2 . Copy the Symfony project files in the Subversion folder:
63
+ # . Copy the Symfony project files in the Subversion folder:
64
64
65
65
.. code-block :: bash
66
66
67
67
$ mv Symfony/* myproject/
68
68
69
- 3 . Now, set the ignore rules. Not everything *should * be stored in your Subversion
69
+ # . Now, set the ignore rules. Not everything *should * be stored in your Subversion
70
70
repository. Some files (like the cache) are generated and others (like
71
71
the database configuration) are meant to be customized on each machine.
72
72
This makes use of the ``svn:ignore `` property, so that specific files can
@@ -87,21 +87,21 @@ with these steps:
87
87
88
88
$ svn ci -m " commit basic Symfony ignore list (vendor, app/bootstrap*, app/config/parameters.yml, app/cache/*, app/logs/*, web/bundles)"
89
89
90
- 4 . The rest of the files can now be added and committed to the project:
90
+ # . The rest of the files can now be added and committed to the project:
91
91
92
92
.. code-block :: bash
93
93
94
94
$ svn add --force .
95
95
$ svn ci -m " add basic Symfony Standard 2.X.Y"
96
96
97
- 5 . Copy ``app/config/parameters.yml `` to ``app/config/parameters.yml.dist ``.
97
+ # . Copy ``app/config/parameters.yml `` to ``app/config/parameters.yml.dist ``.
98
98
The ``parameters.yml `` file is ignored by svn (see above) so that
99
99
machine-specific settings like database passwords aren't committed. By
100
100
creating the ``parameters.yml.dist `` file, new developers can quickly clone
101
101
the project, copy this file to ``parameters.yml ``, customize it, and start
102
102
developing.
103
103
104
- 6 . Finally, download all of the third-party vendor libraries by
104
+ # . Finally, download all of the third-party vendor libraries by
105
105
executing Composer. For details, see :ref: `installation-updating-vendors `.
106
106
107
107
.. tip ::
0 commit comments