File tree Expand file tree Collapse file tree 4 files changed +22
-100
lines changed Expand file tree Collapse file tree 4 files changed +22
-100
lines changed Original file line number Diff line number Diff line change 287
287
/cookbook/web_services/php_soap_extension /controller/soap_web_service
288
288
/cookbook/workflow/homestead /setup/homestead
289
289
/cookbook/workflow/index /setup
290
- /cookbook/workflow/new_project_git /setup/new_project_git
291
- /cookbook/workflow/new_project_svn /setup/new_project_git
292
- /setup/new_project_svn /setup/new_project_git
290
+ /cookbook/workflow/new_project_git /setup
291
+ /cookbook/workflow/new_project_svn /setup
292
+ /setup/new_project_git /setup
293
+ /setup/new_project_svn /setup
293
294
/components/asset/index /components/asset
294
295
/components/asset/introduction /components/asset
295
296
/components/browser_kit/index /components/browser_kit
Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ You can now add your route directly *above* the controller:
122
122
That's it! The page - ``http://localhost:8000/lucky/number `` will work exactly
123
123
like before! Annotations are the recommended way to configure routes.
124
124
125
+ .. _flex-quick-intro :
126
+
125
127
Auto-Installing Recipes with Symfony Flex
126
128
-----------------------------------------
127
129
Original file line number Diff line number Diff line change @@ -73,6 +73,22 @@ by pressing ``Ctrl+C`` from your terminal.
73
73
You should **NEVER ** listen to all interfaces on a computer that is
74
74
directly accessible from the Internet.
75
75
76
+ Storing your Project in git
77
+ ---------------------------
78
+
79
+ Storing your project in git is easy! Just initialize you repository, add everything
80
+ and commit:
81
+
82
+ .. code-block :: terminal
83
+
84
+ $ git init
85
+ $ git add .
86
+ $ git commit -m "Initial commit"
87
+
88
+ Your project already has a sensible ``.gitignore `` file. And as you install more
89
+ packages, a system called :ref: `Flex <flex-quick-intro >` will add more lines to that
90
+ file when needed.
91
+
76
92
Troubleshooting: The Requirements Checker
77
93
-----------------------------------------
78
94
@@ -167,7 +183,6 @@ Go Deeper with Setup
167
183
:glob:
168
184
169
185
setup/homestead
170
- setup/new_project_git
171
186
setup/built_in_web_server
172
187
setup/web_server_configuration
173
188
setup/composer
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments