Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Deployers

Zeyuan Shang edited this page Nov 19, 2015 · 2 revisions

Currently, we only support Django, Ruby on Rails and Node.js applications. If you want to write your own deployer, there is a class BaseDeployer in core/deployers/basedeployer.py, please use it as your base class. Then you just need to implement the functions that is marked as NotImplementedError in the base class.

There are our full-featured deployers in the same directory, you can read them for more reference. They use a lot of help functions defined in the directory `core/utils', which may be useful to you.