crankshaft/DEPLOYING.md

25 lines
400 B
Markdown
Raw Normal View History

2016-02-17 00:48:42 +08:00
# Workflow
... (branching/merging flow)
# Deployment
...
2016-02-17 00:48:42 +08:00
Deployment to db servers
```
# Install python module
2016-02-19 16:57:32 +08:00
sudo pip install python/crankshaft --upgrade
# Install extension
2016-02-19 16:57:32 +08:00
(cd pg && sudo PGUSER=postgres make all install)
```
2016-02-18 18:07:49 +08:00
Caveat: note that `pip install ./crankshaft` will install
from local files, but `pip install crankshaft` will not.
Installing the extension in user databases:
...