-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
1,286 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
# Chimp | ||
# | ||
 | ||
# | ||
|
||
## Your Quality Faster Companion | ||
|
||
Please go to http://chimpjs.com for documentation | ||
# IMPORTANT ANNOUNCEMENT - July 22nd, 2018 | ||
|
||
The Chimp that you know and love is now being split into two separate projects, both of which are intended to help you deliver higher quality faster. | ||
|
||
The first is [*Chimpy*](https://github.com/TheBrainFamily/chimpy). This project will continue evolving and supporting the current thinking behind Chimp 1.x. | ||
|
||
The second is [*Chimp 2.0*](https://github.com/xolvio/chimp). This project will be built from scratch based on the learnings made while using Chimp 1.x in the field. | ||
|
||
For more details about this decision, [please see the full announcement here.](https://medium.com/@sam_hatoum/the-future-of-chimp-js-e911f8e9aaa6) | ||
|
||
## Chimp 2.0 | ||
Chimp 2.0 is likely to be a [Yeoman](http://yeoman.io/) for quality. The intention is to have Chimp be your companion that you can call on to help you create high quality code that is optimized for changes | ||
|
||
## Quality Faster | ||
Please checkout the new [Quality Faster](https://www.qualityfaster.com) guide where you can learn how to build quality in to your application across the full stack. | ||
|
||
Anyone that purchased The Meteor Testing Manual will get this guide for free. [See here for the announcement](https://www.qualityfaster.com/landing/meteor-testing.html). | ||
|
||
## Community | ||
**Slack:** Please join our Slack [xolv.io/community](http://community.xolv.io) #chimp channel, where you can chat, find help and help others. (it might take a minute for the free Now.sh serverless function to start up!) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
echo "Cleaning the bucket $1" | ||
|
||
aws s3 rm $1 --recursive | ||
|
||
#echo "Syncing gzipped files to bucket $1" | ||
#aws s3 sync ./build/ $1 \ | ||
#--include "*" --acl public-read --cache-control max-age=31556926,public --content-encoding gzip \ | ||
#--delete \ | ||
|
||
echo "Syncing non-gzipped files to bucket $1" | ||
aws s3 sync ./build/ $1 --acl public-read --cache-control max-age=31556926,public |
67 changes: 67 additions & 0 deletions
67
documentation/serverless/.serverless/cloudformation-template-create-stack.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"AWSTemplateFormatVersion": "2010-09-09", | ||
"Description": "The AWS CloudFormation template for this Serverless application", | ||
"Resources": { | ||
"ServerlessDeploymentBucket": { | ||
"Type": "AWS::S3::Bucket", | ||
"Properties": { | ||
"BucketEncryption": { | ||
"ServerSideEncryptionConfiguration": [ | ||
{ | ||
"ServerSideEncryptionByDefault": { | ||
"SSEAlgorithm": "AES256" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"ServerlessDeploymentBucketPolicy": { | ||
"Type": "AWS::S3::BucketPolicy", | ||
"Properties": { | ||
"Bucket": { | ||
"Ref": "ServerlessDeploymentBucket" | ||
}, | ||
"PolicyDocument": { | ||
"Statement": [ | ||
{ | ||
"Action": "s3:*", | ||
"Effect": "Deny", | ||
"Principal": "*", | ||
"Resource": [ | ||
{ | ||
"Fn::Join": [ | ||
"", | ||
[ | ||
"arn:", | ||
{ | ||
"Ref": "AWS::Partition" | ||
}, | ||
":s3:::", | ||
{ | ||
"Ref": "ServerlessDeploymentBucket" | ||
}, | ||
"/*" | ||
] | ||
] | ||
} | ||
], | ||
"Condition": { | ||
"Bool": { | ||
"aws:SecureTransport": false | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"Outputs": { | ||
"ServerlessDeploymentBucketName": { | ||
"Value": { | ||
"Ref": "ServerlessDeploymentBucket" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.