mirror of
https://github.com/kennethreitz-archive/python-versions.git
synced 2026-06-05 23:30:17 +00:00
bottle/brew
This commit is contained in:
+6
-2
@@ -24,8 +24,7 @@ Deployment
|
||||
$ git clone git@github.com:kennethreitz/python-versions.git
|
||||
$ heroku create
|
||||
$ git push heroku master
|
||||
$ heroku config:set AWS_ACCESS_KEY_ID=xxxx AWS_SECRET_ACCESS_KEY=xxxx S3_BUCKET=xxx
|
||||
|
||||
$ heroku config:set AWS_ACCESS_KEY_ID=xxxx AWS_SECRET_ACCESS_KEY=xxxx
|
||||
|
||||
Usage
|
||||
-----
|
||||
@@ -33,6 +32,11 @@ Usage
|
||||
Once deployed, building a forumla is simple::
|
||||
|
||||
$ heroku run ./brew <forumla> <bucket>
|
||||
# Builds specified Python to ``./python``.
|
||||
|
||||
Releasing a forumla is simple::
|
||||
|
||||
$ heroku run ./bottle <forumla> <bucket>
|
||||
# Builds specified Python and uploads the resulting tarball to the given S3 bucket.
|
||||
|
||||
Distribution "Spec"
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# Usage: $ bottle <formula> <bucket>
|
||||
|
||||
./build.sh -f $1 -p ./python -x $1.tar.bz2 -r $2
|
||||
Reference in New Issue
Block a user