123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- return [
- // SCM repository
- //////////////////////////////////////////////////////////////////////
- // The SCM used (supported: "git", "svn")
- 'scm' => 'git',
- // The SSH/HTTPS address to your repository
- // Example: https://github.com/vendor/website.git
- 'repository' => 'http://caihongxingqiu:Ch20151002@git.caihongxingqiu.net/rainbow/cms-service.git',
- // The repository credentials : you can leave those empty
- // if you're using SSH or if your repository is public
- // In other cases you can leave this empty too, and you will
- // be prompted for the credentials on deploy. If you don't want
- // to be prompted (public repo, etc) set the values to null
- 'username' => 'null',
- 'password' => 'null',
- // The branch to deploy
- 'branch' => 'master',
- // Whether your SCM should do a "shallow" clone of the repository
- // or not – this means a clone with just the latest state of your
- // application (no history)
- // If you're having problems cloning, try setting this to false
- 'shallow' => true,
- // Recursively pull in submodules. Works only with GIT.
- 'submodules' => true,
- ];
|