eudicots / Cactus

Static site generator for designers. Uses Python and Django templates.
BSD 3-Clause "New" or "Revised" License
3.47k stars 314 forks source link

Rackspace region support #95

Open petergoody opened 10 years ago

petergoody commented 10 years ago

Any plans to support non-default Rackspace regions? We would like to deploy to Sydney but don't see any way to do so. Thanks!

krallin commented 10 years ago

One would need to add a configuration option for that, and access the configuration option here:

https://github.com/koenbok/Cactus/blob/v3/cactus/deployment/cloudfiles/engine.py#L21

It's pretty easy to access configuration from within a deployment engine, as you can see here:

https://github.com/koenbok/Cactus/blob/v3/cactus/deployment/s3/engine.py#L85

Just make sure there's a sane default!

I personally don't have the time to work on that right now, but if you'd like to submit a PR, we'll be happy to look at it.

Cheers,