-
Notifications
You must be signed in to change notification settings - Fork 1
/
appspec.yml
62 lines (62 loc) · 1.77 KB
/
appspec.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: 0.0
os: linux
files:
- source: /app
destination: /var/www/phplaravel/app/
- source: /bootstrap
destination: /var/www/phplaravel/bootstrap/
- source: /config
destination: /var/www/phplaravel/config/
- source: /database
destination: /var/www/phplaravel/database/
- source: /public
destination: /var/www/phplaravel/public/
- source: /resources
destination: /var/www/phplaravel/resources/
- source: /routes
destination: /var/www/phplaravel/routes/
- source: /storage
destination: /var/www/phplaravel/storage/
- source: /tests
destination: /var/www/phplaravel/tests/
- source: /.env.example
destination: /var/www/phplaravel/
- source: /.gitattributes
destination: /var/www/phplaravel/
- source: /.gitignore
destination: /var/www/phplaravel/
- source: /artisan
destination: /var/www/phplaravel/
- source: /composer.json
destination: /var/www/phplaravel/
- source: /composer.lock
destination: /var/www/phplaravel/
- source: /gulpfile.js
destination: /var/www/phplaravel/
- source: /index.php
destination: /var/www/phplaravel/
- source: /package.json
destination: /var/www/phplaravel/
- source: /webpack.config.js
destination: /var/www/phplaravel/
- source: /webpack.mix.js
destination: /var/www/phplaravel/
- source: /phpunit.xml
destination: /var/www/phplaravel/
- source: /server.php
destination: /var/www/phplaravel/
hooks:
AfterInstall:
- location: scripts/install_dependencies
timeout: 900
runas: root
- location: scripts/codestar_remote_access
timeout: 300
runas: root
- location: scripts/start_server
timeout: 300
runas: root
ApplicationStop:
- location: scripts/stop_server
timeout: 300
runas: root