-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappspec.yml
67 lines (67 loc) · 1.76 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
63
64
65
66
67
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: /phpunit.xml
destination: /var/www/phplaravel/
- source: /server.php
destination: /var/www/phplaravel/
- source: /scripts/requirements.txt
destination: /home/ec2-user/scripts
hooks:
AfterInstall:
- location: scripts/install_python3
timeout: 300
runas: root
- location: scripts/codestar_remote_access
timeout: 300
runas: root
- location: scripts/install_php_laravel
timeout: 300
runas: root
- location: scripts/install_httpd
timeout: 300
runas: root
ApplicationStart:
- location: scripts/start_server
timeout: 300
runas: root
ApplicationStop:
- location: scripts/stop_server
timeout: 300
runas: root