parent
f763d3d454
commit
ca661b8a24
@ -0,0 +1,3 @@ |
|||||||
|
<?php |
||||||
|
define('INSTALL_DATE',1602747961); |
||||||
|
define('SERIALNUMBER','zQIGdI'); |
@ -0,0 +1 @@ |
|||||||
|
APP_DEBUG = true
[APP]
DEFAULT_TIMEZONE = Asia/Shanghai
[DATABASE]
TYPE = mysql
HOSTNAME = 127.0.0.1
DATABASE = test
USERNAME = username
PASSWORD = password
HOSTPORT = 3306
CHARSET = utf8
DEBUG = true
[LANG]
default_lang = zh-cn
[REDIS]
REDIS_HOSTNAME = 127.0.0.1
PORT = 6379
REDIS_PASSWORD =
SELECT = 0 |
@ -0,0 +1,13 @@ |
|||||||
|
/.git |
||||||
|
/.idea |
||||||
|
/runtime |
||||||
|
/backup |
||||||
|
*.log |
||||||
|
/public/install/install.lock |
||||||
|
public/admin/ |
||||||
|
/.env |
||||||
|
/swoole.pid |
||||||
|
public/pages/ |
||||||
|
public/static/ |
||||||
|
help/docker-compose/mysql/data/ |
||||||
|
help/docker-compose/redis/data/ |
@ -0,0 +1,22 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
namespace PHPSTORM_META { |
||||||
|
|
||||||
|
use think\Container; |
||||||
|
use function \app; |
||||||
|
|
||||||
|
override( |
||||||
|
\app(), |
||||||
|
map([ |
||||||
|
'json' => \crmeb\utils\Json::class |
||||||
|
]) |
||||||
|
); |
||||||
|
|
||||||
|
override( |
||||||
|
\think\Container::make(), |
||||||
|
map([ |
||||||
|
'' => '@' |
||||||
|
]) |
||||||
|
); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,42 @@ |
|||||||
|
sudo: false |
||||||
|
|
||||||
|
language: php |
||||||
|
|
||||||
|
branches: |
||||||
|
only: |
||||||
|
- stable |
||||||
|
|
||||||
|
cache: |
||||||
|
directories: |
||||||
|
- $HOME/.composer/cache |
||||||
|
|
||||||
|
before_install: |
||||||
|
- composer self-update |
||||||
|
|
||||||
|
install: |
||||||
|
- composer install --no-dev --no-interaction --ignore-platform-reqs |
||||||
|
- zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Core.zip . |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-image:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-migration:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-captcha:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-mongo:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-worker:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-helper:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-queue:^1.0" |
||||||
|
- composer require --update-no-dev --no-interaction "topthink/think-angular:^1.0" |
||||||
|
- composer require --dev --update-no-dev --no-interaction "topthink/think-testing:^1.0" |
||||||
|
- zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Full.zip . |
||||||
|
|
||||||
|
script: |
||||||
|
- php think unit |
||||||
|
|
||||||
|
deploy: |
||||||
|
provider: releases |
||||||
|
api_key: |
||||||
|
secure: TSF6bnl2JYN72UQOORAJYL+CqIryP2gHVKt6grfveQ7d9rleAEoxlq6PWxbvTI4jZ5nrPpUcBUpWIJHNgVcs+bzLFtyh5THaLqm39uCgBbrW7M8rI26L8sBh/6nsdtGgdeQrO/cLu31QoTzbwuz1WfAVoCdCkOSZeXyT/CclH99qV6RYyQYqaD2wpRjrhA5O4fSsEkiPVuk0GaOogFlrQHx+C+lHnf6pa1KxEoN1A0UxxVfGX6K4y5g4WQDO5zT4bLeubkWOXK0G51XSvACDOZVIyLdjApaOFTwamPcD3S1tfvuxRWWvsCD5ljFvb2kSmx5BIBNwN80MzuBmrGIC27XLGOxyMerwKxB6DskNUO9PflKHDPI61DRq0FTy1fv70SFMSiAtUv9aJRT41NQh9iJJ0vC8dl+xcxrWIjU1GG6+l/ZcRqVx9V1VuGQsLKndGhja7SQ+X1slHl76fRq223sMOql7MFCd0vvvxVQ2V39CcFKao/LB1aPH3VhODDEyxwx6aXoTznvC/QPepgWsHOWQzKj9ftsgDbsNiyFlXL4cu8DWUty6rQy8zT2b4O8b1xjcwSUCsy+auEjBamzQkMJFNlZAIUrukL/NbUhQU37TAbwsFyz7X0E/u/VMle/nBCNAzgkMwAUjiHM6FqrKKBRWFbPrSIixjfjkCnrMEPw= |
||||||
|
file: |
||||||
|
- ThinkPHP_Core.zip |
||||||
|
- ThinkPHP_Full.zip |
||||||
|
skip_cleanup: true |
||||||
|
on: |
||||||
|
tags: true |
@ -0,0 +1,28 @@ |
|||||||
|
{ |
||||||
|
"name": "admin.jiuhaosh.cn", |
||||||
|
"host": "112.124.9.206", |
||||||
|
"protocol": "sftp", |
||||||
|
"port": 22, |
||||||
|
"username": "root", |
||||||
|
"password": "zhongYI123321", |
||||||
|
"remotePath": "/server/wwwroot/www.jiuhaosh.cn", |
||||||
|
"uploadOnSave": true, |
||||||
|
"useTempFile": false, |
||||||
|
"openSsh": false, |
||||||
|
"ignore_regexes": [ |
||||||
|
"\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json", |
||||||
|
"sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/", |
||||||
|
"\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini" |
||||||
|
], |
||||||
|
|
||||||
|
"save_before_upload": true, |
||||||
|
"upload_on_save": true, |
||||||
|
"sync_down_on_open": true, |
||||||
|
"sync_skip_deletes": true, |
||||||
|
"sync_same_age": true, |
||||||
|
"confirm_downloads": true, |
||||||
|
"confirm_sync": true, |
||||||
|
"confirm_overwrite_newer": true, |
||||||
|
|
||||||
|
"connect_timeout": 30 |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
AHUVBGlmK_xPcJdswh0XCUHGLOcrx63OXIGnkuCtut8.ZNt1h3fC9EZnKhsnhswJhLUsDh8W6iC474Wp37p5NGQ |
Loading…
Reference in new issue