Skip to content

Commit

Permalink
move
Browse files Browse the repository at this point in the history
  • Loading branch information
anoxia committed Dec 22, 2018
0 parents commit af0587e
Show file tree
Hide file tree
Showing 12 changed files with 634 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.*
!.gitignore
.idea/
*.log
nbproject/
.htaccess
vendor/
composer.phar
!.phalcon.php
Vagrantfile
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# bee-deploy
Bee框架部署组件
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "bee-framework/deploy",
"description": "Bee框架部署组件",
"type": "library",
"authors": [
{
"name": "南山吴彦祖",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"adhocore/cli": "^0.3.2",
"bee-framework/util": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Bee\\Deploy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bee\\Deploy\\Tests\\": "tests/"
}
}
}
338 changes: 338 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions example/db.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php
return [
'host' => 'http://134.175.219.113/', // 配置拉取接口地址
'token' => 'MTU0MDE5MzE3Ni0wMDAwMDA3MC1jMzI4YWFmMw==', // 身份令牌(来自部署用户组)
];
Loading

0 comments on commit af0587e

Please sign in to comment.