Socialify

Folder ..

Viewing appspec.yaml
18 lines (17 loc) • 392.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
version: 0.0
os: linux
files:
  - source: /
    destination: /api-consumet-org
hooks:
  BeforeInstall:
    - location: .github/scripts/install_dependencies.sh
      timeout: 300
      runas: root

  ApplicationStart:
    - location: .github/scripts/start_server.sh
      timeout: 300
      runas: root

  ValidateService:
    - location: .github/scripts/validate_service.sh
      timeout: 300