Skip to content

Instantly share code, notes, and snippets.

@dmcquay
Created October 31, 2013 18:32
Show Gist options
  • Save dmcquay/7254617 to your computer and use it in GitHub Desktop.
Save dmcquay/7254617 to your computer and use it in GitHub Desktop.
{
"maxConcurrentManipulations": 2,
"maxConcurrentProxyStreams": 2,
"port": 3000,
"buckets": {
"default": {
"originalsS3Bucket": "com-athlete-ezimg",
"manipulationsS3Bucket": "com-athlete-ezimg",
"allowWrite": true,
"originalKeyFormat": "{bucket}/originals/{imgId}",
"manipulationKeyFormat": "{bucket}/manipulations/{imgId}/{manipulation}",
"manipulations": {
"small": [
{
"operation": "resize",
"params": [100, 100]
}
],
"medium": [
{
"operation": "resize",
"params": [300, 300]
}
],
"square": [
{
"operation": "squareCenterCrop",
"params": [300]
}
]
}
},
"staging": {
"originalsS3Bucket": "com-athlete-staging-static",
"manipulationsS3Bucket": "com-athlete-ezimg",
"allowWrite": false,
"allowOTFManipulations": true,
"originalKeyFormat": "media/{imgId}",
"manipulationKeyFormat": "{bucket}/manipulations/{imgId}/{manipulation}",
"manipulations": {
"small": [
{
"operation": "resize",
"params": [100, 100]
}
],
"medium": [
{
"operation": "resize",
"params": [300, 300]
}
],
"square": [
{
"operation": "squareCenterCrop",
"params": [300]
}
]
}
},
"development_media": {
"originalsS3Bucket": "com-athlete-development-static",
"manipulationsS3Bucket": "com-athlete-ezimg",
"allowWrite": false,
"allowOTFManipulations": true,
"originalKeyFormat": "media/{imgId}",
"manipulationKeyFormat": "{bucket}/manipulations/{imgId}/{manipulation}",
"manipulations": {
"feed": [
{
"operation": "resize",
"params": [100, 100]
}
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment