Select the types of activity you want to include in your feed.
@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
···11+<?php
22+33+/*
44+ * Copyright 2012 Facebook, Inc.
55+ *
66+ * Licensed under the Apache License, Version 2.0 (the "License");
77+ * you may not use this file except in compliance with the License.
88+ * You may obtain a copy of the License at
99+ *
1010+ * http://www.apache.org/licenses/LICENSE-2.0
1111+ *
1212+ * Unless required by applicable law or agreed to in writing, software
1313+ * distributed under the License is distributed on an "AS IS" BASIS,
1414+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1515+ * See the License for the specific language governing permissions and
1616+ * limitations under the License.
1717+ */
1818+1919+return array(
2020+2121+ // This will be the base domain for your install, and must be configured.
2222+ // Use "https://" if you have SSL. See below for some notes.
2323+ 'phabricator.base-uri' => 'http://phab1.pushlabs.net/',
2424+ 'phabricator.timezone' => 'America/Los_Angeles',
2525+2626+ // Connection information for MySQL.
2727+ 'mysql.host' => 'localhost',
2828+ 'mysql.user' => 'root',
2929+ 'mysql.pass' => 'strawberry30',
3030+3131+ // Basic email domain configuration.
3232+ 'metamta.default-address' => 'noreply@phab1.pushlabs.net',
3333+ 'metamta.domain' => 'phab1.pushlabs.net',
3434+3535+ // NOTE: Check default.conf.php for detailed explanations of all the
3636+ // configuration options, including these.
3737+3838+) + phabricator_read_config_file('development');