8000 Removing some installation instructions by weaverryan · Pull Request #4608 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Removing some installation instructions #4608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 20, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Re-wording parameters.yml section and removing note about vendor #4608
The vendors was removed because we really need to keep this focused on svn
and not repeat ourselves and create duplicate docs
  • Loading branch information
weaverryan committed Dec 20, 2014
commit 3395b50a714252a73471d086911f224c02570dff
20 changes: 6 additions & 14 deletions cookbook/workflow/new_project_svn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,20 +94,12 @@ with these steps:
$ svn add --force .
$ svn ci -m "add basic Symfony Standard 2.X.Y"

#. Copy ``app/config/parameters.yml`` to ``app/config/parameters.yml.dist``.
The ``parameters.yml`` file is ignored by svn (see above) so that
machine-specific settings like database passwords aren't committed. By
creating the ``parameters.yml.dist`` file, new developers can quickly clone
the project, copy this file to ``parameters.yml``, customize it, and start
developing.

#. Finally, download all of the third-party vendor libraries by
executing Composer. For details, see :ref:`installation-updating-vendors`.

.. tip::

If you rely on any "dev" versions, then Git may be used to install
those libraries, since there is no archive available for download.
That's it! Since the ``app/config/parameters.yml`` file is ignored, you can
store machine-specific settings like database passwords here without committing
them. The ``parameters.yml.dist`` file *is* committed, but is not read by
Symfony. And by adding any new keys you need to both files, new developers
can quickly clone the project, copy this file to ``parameters.yml``, customize
it, and start developing.

At this point, you have a fully-functional Symfony project stored in your
Subversion repository. The development can start with commits in the Subversion
Expand Down
0