This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name fastcgi.dev; | |
location / { | |
fastcgi_pass 127.0.0.1:6000; | |
include fastcgi_params; | |
fastcgi_param CONTENT_LENGTH $content_length; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
files: | |
- | |
pattern: path/to/messages.<locale>.yml | |
options: | |
# Options when pushing (importing) translation files: | |
# - reviewed = Mark directly all translations as approved | |
# - erase = Replace existing translations by the ones in the files | |
# - clean = Delete translations which are not present in the files anymore | |
push: [reviewed, erase, clean] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "110e8400-e29b-11d4-a716-446655440000", | |
"slug": "foobar", | |
"name": "Foobar", | |
"description": "Some foobar project description", | |
"source": { | |
"locale": "en", | |
"name": "English" | |
}, | |
"createdBy": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
<<<CONFIG | |
packages: | |
- "symfony/translation: v2.6.4" | |
- "symfony/config: v2.6.4" | |
CONFIG; | |
if (!isset($argv[1])) { | |
die('Usage: melody openl10n-debug.php <filename>.xlf'); | |
} |
- https://github.com/reactphp/promise/blob/master/src/PromiseInterface.php
- https://github.com/guzzle/promises/blob/master/src/PromiseInterface.php
- https://github.com/amphp/amp/blob/master/lib/Promise.php
- https://github.com/kriswallsmith/spork/blob/master/src/Spork/Deferred/PromiseInterface.php
- https://github.com/icicleio/Icicle/blob/master/src/Promise/PromiseInterface.php
- https://github.com/recoilphp/recoil/blob/develop/src/Coroutine/PromiseCoroutine.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
if [ $# -lt 2 ]; then | |
echo "Usage: $0 <plan> <branch>" | |
exit 1 | |
fi | |
PLAN=$1 |