uncloud-mravi/uncloud
2020-02-23 21:34:22 +05:00
..
opennebula migration fix 2020-02-23 21:34:22 +05:00
uncloud -- merge conflict 2020-02-23 17:20:28 +01:00
uncloud_api Merge branch 'nico/meow-pay-master' into HEAD 2020-02-23 20:25:35 +05:00
uncloud_auth move uncloud a layer up 2020-02-23 14:07:37 +01:00
uncloud_vm move uncloud a layer up 2020-02-23 14:07:37 +01:00
.gitignore Merge branch 'nico/meow-pay-master' into HEAD 2020-02-23 20:25:35 +05:00
manage.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
README.md move uncloud a layer up 2020-02-23 14:07:37 +01:00
requirements.txt Merge branch 'nico/meow-pay-master' into HEAD 2020-02-23 20:25:35 +05:00

Install

OS package requirements

Alpine:

apk add openldap-dev postgresql-dev

Python requirements

If you prefer using a venv, use:

python -m venv venv
. ./venv/bin/activate

Then install the requirements

pip install -r requirements.txt

Database requirements

Due to the use of the JSONField, postgresql is required.

First create a role to be used:

postgres=# create role nico login;

Then create the database owner by the new role:

postgres=# create database uncloud owner nico;

Secrets

cp uncloud/secrets_sample.py to uncloud/secrets.py and replace the sample values with real values.