Skip to content
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

Better cleaning command for useless dirs #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
10 changes: 4 additions & 6 deletions doc/install-standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This will download the standard edition without git informations.

### Initialisation of the starter kit
We will create the project in a WorldCompany (company name) folder and the new extension
will be at src/WorldCompany/WorldConnectorBundle
will be at src/WorldCompany/WorldConnectorBundle

```
cd ${PIM_PATH}/src
Expand Down Expand Up @@ -70,14 +70,12 @@ find . -name '*.php' -type f -print0 | xargs -0 sed -i "s#DemoConnector#${CONNEC
At this point, you can clean all the starter kit initialization files:

```
rm -f doc/*
rm -rf vendor
rm -rf .git
rm -rf bin vendor .git doc/*
echo "# ${CONNECTOR_NAME} extension" > README.md
```

And finally initialize a brand new git repository to start versioning your work:

```
git init
```
Expand Down Expand Up @@ -108,7 +106,7 @@ Modify the autoload section:
},
```

And finally update the composer autoloader:
And finally update the composer autoloader:

```
composer dump-autoload
Expand Down