Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/relrod/phabricator-openshift-quickstart
An OpenShift Quickstart template for Facebook's Phabricator.
https://github.com/relrod/phabricator-openshift-quickstart
Last synced: 13 days ago
JSON representation
An OpenShift Quickstart template for Facebook's Phabricator.
- Host: GitHub
- URL: https://github.com/relrod/phabricator-openshift-quickstart
- Owner: relrod
- Created: 2012-07-27T16:52:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-24T22:26:38.000Z (almost 11 years ago)
- Last Synced: 2024-10-04T13:39:21.549Z (about 1 month ago)
- Language: Shell
- Size: 145 KB
- Stars: 17
- Watchers: 3
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Phabricator Quickstart
A template app to get [Phabricator](https://github.com/facebook/phabricator)
up and running on OpenShift.# How To Use
## Requirements
* An OpenShift [account](https://openshift.redhat.com).
* 5-10 minutes of free time.## Create the OpenShift Gear.
```shell
$ rhc-create-app -a phabricator -t php-5.3 -l [your username]
Password:
Creating application: phabricator in [your namespace]
Now your new domain name is being propagated worldwide (this might take a minute)...
...
Successfully created application: phabricator
```## Add the MySQL cartridge.
```shell
$ rhc-app cartridge add -c mysql-5.1 -a phabricator -l [your username]
Password:RESULT:
MySQL 5.1 database added. Please make note of these credentials:
...
```## Pull in this Quickstart repository.
```shell
$ cd phabricator
$ git remote add quickstart git://github.com/CodeBlock/phabricator-openshift-quickstart.git
$ git pull quickstart master
From git://github.com/CodeBlock/phabricator-openshift-quickstart
* branch master -> FETCH_HEAD
Updating f1f79ce..303e532
...
```## Move the config file in to place and customize it.
```shell
$ cp misc/myconfig.conf.php.dist misc/myconfig.conf.php
$ $EDITOR misc/myconfig.conf.php
$ git add -f misc/myconfig.conf.php
$ git commit -m 'Added my own configuration file.'
```Be sure to edit the domain name to point to your namespace/app.
## Push everything to openshift.
```shell
$ git push origin master
Counting objects: 16, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (10/10), 2.13 KiB, done.
...
```## Create an account for yourself
```shell
# Figure out what to ssh to.
$ grep rhcloud .git/config | sed 's/.*\/\(.\+\)\/~.*/\1/g'
[some random username]@phabricator-[your namespace].rhcloud.com$ ssh [output from above]
```Once you've ssh'd to the application, create a user using phabricator's `accountadmin`.
```shell
$ PHABRICATOR_ENV=custom/myconfig ./phabricator/repo/phabricator/bin/accountadmin
[follow the wizard to create a user]
```## And finally...
Go to it in your browser:
https://phabricator-[your namespace].rhcloud.com/
Have fun!
# Notes
## Repository location
OpenShift gives (as of this writing) 1GB of space with each gear by default.
You can request more space, however. See the instructions
[here](https://openshift.redhat.com/community/faq/how-much-disk-space-do-i-get-with-openshift).An important note is that every time you deploy to OpenShift, your live app
gets deleted and recreated from the new push. This means that any changes you
make to the live app (via ssh, for example), will get overwritten.Because if this, it's imporant to place clones of repositories that Phabricator tracks,
in a "safe" location. In OpenShift terms, this location is `../data/`, relative to the
live repository. Also known as `$OPENSHIFT_GEAR_DIR/data`. Files/directories in `../data`
are persistent through deployments.## Pygments
I've managed to get Pygments working decently with Phabricator, now that upstream
[D3091](https://secure.phabricator.com/D3091) has landed. Behind the scenes,
the Quickstart will set up a python 'virtualenv' in your repository space when you
deploy. This means 1) we are able to install Pygments into this environment, and use
it; and 2) Every time you deploy (since your live repository space gets deleted and
re-created), you get the latest Pygments automatically. Have fun!# Thanks
Thank you to Evan Priestley for working with me in getting this working on OpenShift
and for the awesome job he's done (and continues to do) with developing Phabricator.