crankshaft/DEPLOYING.md
Javier Goizueta 89cda152bd Caveat note
2016-02-18 11:07:49 +01:00

25 lines
416 B
Markdown

# Workflow
... (branching/merging flow)
# Deployment
...
Deployment to db servers
```
# Install python module
sudo pip install {{path}}/python/crankshaft --upgrade
# Install extension
cd {{path}}/pg && sudo PGUSER=postgres make all install
```
Caveat: note that `pip install ./crankshaft` will install
from local files, but `pip install crankshaft` will not.
Installing the extension in user databases:
...