-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.platform.app.yaml
69 lines (53 loc) · 1.61 KB
/
.platform.app.yaml
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
name: carson-bot
type: php:8.3
runtime:
extensions:
- apcu
- mbstring
- pdo_pgsql
build:
flavor: none
web:
locations:
"/":
root: "public"
expires: 1h
passthru: "/index.php"
disk: 2048
#variables:
# php:
# opcache.preload: /app/config/preload.php
mounts:
'/var': { source: local, source_path: var }
hooks:
build: |
set -x -e
curl -s https://get.symfony.com/cloud/configurator | bash
symfony-build
deploy: |
set -x -e
symfony-deploy
crons:
unpause:
spec: '0 0 * * 0' # every Sunday at midnight
cmd: croncape symfony redeploy --no-wait
run_tasks:
spec: '*/5 * * * *'
cmd: croncape bin/console app:task:run
stale_issues_symfony:
spec: '58 12 * * *'
cmd: croncape bin/console app:issue:ping-stale symfony/symfony --not-updated-for 6months
stale_issues_docs:
spec: '48 12 * * *'
cmd: croncape bin/console app:issue:ping-stale symfony/symfony-docs --not-updated-for 12months
stale_issues_ux:
spec: '38 12 * * *'
cmd: croncape bin/console app:issue:ping-stale symfony/ux --not-updated-for 6months
stale_issues_webpack_encore:
spec: '28 12 * * *'
cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore --not-updated-for 6months
stale_issues_webpack_encore_bundle:
spec: '18 12 * * *'
cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore-bundle --not-updated-for 6months
relationships:
database: "mydatabase:postgresql"