https://github.com/fbrinker/werckerstep-appengine-deploy-path
A Wercker step that deploys a specified directory to the Google AppEngine.
https://github.com/fbrinker/werckerstep-appengine-deploy-path
Last synced: 3 months ago
JSON representation
A Wercker step that deploys a specified directory to the Google AppEngine.
- Host: GitHub
- URL: https://github.com/fbrinker/werckerstep-appengine-deploy-path
- Owner: fbrinker
- Created: 2014-03-09T16:43:48.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-12T14:51:10.000Z (about 11 years ago)
- Last Synced: 2025-02-23T09:35:59.113Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 168 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AppEngine Deploy Path
A [Wercker](http://wercker.com/) step that deploys a specified directory to the [Google AppEngine](https://appengine.google.com).
You may want to deploy only your *src* or *build* directory instead of all your files including tests and other files not needed in a release.
[](https://app.wercker.com/project/bykey/95c0eca20545112757ba1b5c7925abfd)
## Options
### required* `email` - The email address of the Google account to use for deployment.
* `password` - The password of the Google account to use for deployment.
* `srcpath` - The path to the directory you want to deploy (for example `./src`).## Example
deploy:
steps:
- fbrinker/appengine-deploy-path:
email: $APP_ENGINE_USER
password: $APP_ENGINE_PASS
srcpath: ./srcI recommend to use private deployment variables for email and password.
**Note**: The app.yaml has to be inside the `srcpath` directory.