diff options
| author | Magnus Hagander | 2017-09-13 13:01:34 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2017-09-13 13:16:34 +0000 |
| commit | 8c16ef8b56cd2f677291310f6aaffa154dc4ef08 (patch) | |
| tree | 8abe50378f76edf9417cf7dc0eac09710e0668de /tools/devsetup/README.txt | |
| parent | 678d765726ccef76f985c8f37c74d637e0b62320 (diff) | |
Add script to set up simple development install
This automates a few of the steps for people who don't really know
django, and also deploys an initial configuratoin that works without
integrating with community authentication, making it easy to work with
standlone.
Reviewed and tested by Daniel Gustafsson
Diffstat (limited to 'tools/devsetup/README.txt')
| -rw-r--r-- | tools/devsetup/README.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/devsetup/README.txt b/tools/devsetup/README.txt new file mode 100644 index 00000000..49b635ef --- /dev/null +++ b/tools/devsetup/README.txt @@ -0,0 +1,22 @@ +Dependencies needed before running +---------------------------------- + +The following dependencies are required for manually rebuilding all the required +python modules. If using distribution pacakged python modules most of them won't +be necessary, but then things usually just work out of the box and no need for +this script. + +* virtualenv corresponding to python 2.7 (in path) +* c compiler and libs (typically build-essential) +* python development libraries (typically python-dev) -- for modules +* ffi development libraries (typically libffi-dev) -- for some modules +* openssl development libraries (typically libssl-dev) -- for crypto related modules +* libjpeg-dev and libpng-dev (*before* installing pillow in python) +* pg_config for postgresql, in path, for the correct version. Typically postgresql-dev package. + +Other dependencies +------------------ +For invoice generation to work, DejaVu needs to be installed in +/usr/share/fonts/truetype/ttf-dejavu/ + +On debian, just install ttf-dejavu. |
