-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackato.yml
More file actions
30 lines (24 loc) · 827 Bytes
/
stackato.yml
File metadata and controls
30 lines (24 loc) · 827 Bytes
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
name: bugzilla
# Need to specify the framework explicitly because we don't have
# an app.psgi file. It is called bugzilla/psgi, and it will only
# be created during post-staging.
framework:
type: perl
# CGI::Emulate::PSGI has a bug that prevents it to work with uWSGI:
# https://rt.cpan.org/Ticket/Display.html?id=72684
# So we are going to run Bugzilla under plackup instead for now:
processes:
web: (cd bugzilla && plackup --port $VCAP_APP_PORT)
# Once the bug is fixed the web command should be:
# web: (cd bugzilla && $PROCESSES_WEB)
hooks:
post-staging: perl setup.pl
# for debugging purposes only
pre-running: env
services:
mysql: mysql-bugzilla
mem: 128M
# Prevent a local development copy of the bugzilla tarball or directory
# from being synced to the cloud controller.
ignores:
- bugzilla