-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp_spec.yml
103 lines (103 loc) · 2.12 KB
/
app_spec.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
databases:
- engine: PG
name: db
num_nodes: 1
size: db-s-dev-database
version: "12"
name: landing-laravel
region: ams
services:
- environment_slug: php
run_command: heroku-php-apache2 public/
envs:
- key: APP_NAME
scope: RUN_TIME
value: Landing_Laravel
- key: APP_ENV
scope: RUN_TIME
value: dev
- key: APP_KEY
scope: RUN_TIME
value: base64:ffYPNP8kPeQDf8gE/qh3kWjk59p6gFY66kCKhhKUa2w=
- key: APP_DEBUG
scope: RUN_TIME
value: "1"
- key: APP_URL
scope: RUN_TIME
value: ${APP_URL}
- key: DATABASE_URL
scope: RUN_TIME
value: ${db.DATABASE_URL}
- key: DB_CONNECTION
scope: RUN_TIME
value: pgsql
- key: DB_HOST
scope: RUN_TIME
value: ${db.HOSTNAME}
- key: DB_PORT
scope: RUN_TIME
value: ${db.PORT}
- key: DB_DATABASE
scope: RUN_TIME
value: ${db.DATABASE}
- key: DB_USERNAME
scope: RUN_TIME
value: ${db.USERNAME}
- key: DB_PASSWORD
scope: RUN_TIME
value: ${db.PASSWORD}
github:
branch: main
deploy_on_push: true
repo: do-community/landing-laravel
http_port: 8080
instance_count: 1
instance_size_slug: basic-xs
name: landing-laravel
routes:
- path: /
jobs:
- name: migrate
kind: POST_DEPLOY
github:
repo: do-community/landing-laravel
branch: main
deploy_on_push: true
run_command: php artisan migrate --seed
envs:
- key: APP_NAME
scope: RUN_TIME
value: Landing_Laravel
- key: APP_ENV
scope: RUN_TIME
value: dev
- key: APP_KEY
scope: RUN_TIME
value: base64:ffYPNP8kPeQDf8gE/qh3kWjk59p6gFY66kCKhhKUa2w=
- key: APP_DEBUG
scope: RUN_TIME
value: "1"
- key: APP_URL
scope: RUN_TIME
value: ${APP_URL}
- key: DATABASE_URL
scope: RUN_TIME
value: ${db.DATABASE_URL}
- key: DB_CONNECTION
scope: RUN_TIME
value: pgsql
- key: DB_HOST
scope: RUN_TIME
value: ${db.HOSTNAME}
- key: DB_PORT
scope: RUN_TIME
value: ${db.PORT}
- key: DB_DATABASE
scope: RUN_TIME
value: ${db.DATABASE}
- key: DB_USERNAME
scope: RUN_TIME
value: ${db.USERNAME}
- key: DB_PASSWORD
scope: RUN_TIME
value: ${db.PASSWORD}