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.
-
Samba
https://gitlab.com/samba-team/samba is the Official GitLab mirror of https://git.samba.org/samba.git -- Merge requests should be made on GitLab (not on GitHub) -
OSIAM
DISCONTINUED. Secure identity management solution providing REST based services for authentication and authorization. -
Smallstep Certificates
A private certificate authority (X.509 & SSH) and related tools for secure automated certificate management. -
ZITADEL
DISCONTINUED. Cloud-native Identity & Access Management solution providing a platform for secure authentication, authorization and identity management.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of BounCA or a related project?
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