* adding atlantis bootstrap mode to support getting started with atlantis for first time users
* removed unwanted confirm variable
* vendoring dependencies
* more vendoring
* more more and more vendoring
* comment about bootstrap package
* Proposed changes (#84)
* reviewed all the comments
* removing required approval flag since we will default to false
* first incomplete draft for project config and pre run refactor
* adding prerun and terraform 0.9 and above support
* partial review
* Changes from pull review. Fix approvals
* more clean up and refactor of terraform init and environment commands to support terraform 0.9.0 and above
* making apply similar to plan for appending extra arguments
* review
* missed apply executor changes and fixing tests
* added new flags `plan-backend`, `plan-s3-bucket`, `plan-s3-prefix` and deleted `s3-bucket`
* interface `plan.Backend` that is implemented by `file` and `s3`
* simplified s3 code
* didn't end up following my suggestions in #30 since storing stuff in metadata requires you to `Get` the object *first* and then use the metadata. By parsing the `Key` to get repo, pull, path, and env, it skips an initial `Get` step, and I can download directly to the correct directory
* allow users to specify `application/json` or `application/x-www-form-urlencoded` for the webhook delivery type
* remove sending of special header for pull request api (fixes#11)
Closes#30 and #17 and #11
* set version in one place
* rename ExecutionContext to CommandContext
* delete unneeded PullRequestContext since it just duplicated what is in CommandContext
* split fields inside CommandContext into Repo, PullRequest, and User models
* clean up unused fields
* remove base_executor stuff which was trying to do inheritance in go and didn't get us anywhere
* clean up unused code and assets
* created a locking.Client that creates the Keys that are used on the front-end. This allows the backends to store the locks any way they like as long as they support the interface
* Add new FindLocksForPull method to locking backends
* Listen for pull request closed events and delete locks
* DynamoDB handling its own serialization. Implement LocksByPull
* Fix routing to work with encoded lockID
* Move locking backends to individual packages
* Change flag from locking-table to locking-dynamodb-table