Popularity
3.1
Growing
Activity
6.2
-
160
7
20

Programming language: Python
License: Apache License 2.0
Tags: Identity Management     Tools and web interfaces    
Latest version: v0.1.1

BounCA alternatives and similar tools

Based on the "Tools and web interfaces" category.
Alternatively, view BounCA alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of BounCA or a related project?

Add another 'Tools and web interfaces' Tool

README

Install instructions

TODO UPDATEN

Create Python3 virtualenv, activate, and install requirements.txt.

virtualenv env -p python3.6
. env/bin/activate
pip install -r requirements.txt
pip install -r requirements.docs.txt  # for local debugging

BounCA

Local

Python setup, for mac and linux no additional actions

Database

Install Postgres version 12 and postgresql-server-dev-12: sudo apt-get install postgresql-12 postgresql-server-dev-12

Create user and database for Postgres

sudo su - postgres
createuser bounca
createdb --owner=bounca bounca --encoding=UTF8 --template=template0
psql -c 'alter user bounca with createdb' postgres  # this is needed for automated tests

Optionally, set a password for the bounca user.

Installation

Create Python 3.7 virtualenv, activate, and install requirements.txt virtualenv env -p python3.7 && . env/bin/activate && pip install -r requirements.txt