Mirror of goauthentik/authentik@github.com - Open-source identity platform
Go to file
Jens Langhammer 3450b8f1fe docs: update screenshots 2020-07-09 00:26:18 +02:00
.github new release: 0.9.0-pre7 2020-07-07 22:34:44 +02:00
docker
docs docs: update screenshots 2020-07-09 00:26:18 +02:00
e2e flows: FlowStageBinding: rename .flow to .target to fix select_subclasses() 2020-07-04 00:14:21 +02:00
gatekeeper
helm root: fix /favicon being routed to application server 2020-07-08 13:18:08 +02:00
passbook flows: fix default-source-enrollment-if-username expression 2020-07-09 00:20:42 +02:00
scripts
.bumpversion.cfg new release: 0.9.0-pre7 2020-07-07 22:34:44 +02:00
.coveragerc
.dockerignore
.editorconfig
.fossa.yml
.gitignore
.isort.cfg
.prospector.yaml
.pylintrc
Dockerfile
LICENSE
Pipfile root: remove psutil as we have external monitoring for CPU 2020-07-07 18:24:24 +02:00
Pipfile.lock build(deps): bump boto3 from 1.14.17 to 1.14.18 2020-07-08 05:16:20 +00:00
README.md polices: add helper to remove None-value keys from dict for policies 2020-07-08 23:07:16 +02:00
SECURITY.md
azure-pipelines.yml ci: fix gatekeeper dockerfile path 2020-07-07 18:48:24 +02:00
docker-compose.yml root: fix /favicon being routed to application server 2020-07-08 13:18:08 +02:00
docker.env.yml
manage.py
mkdocs.yml
pyproject.toml
pyrightconfig.json
setup.cfg
static.Dockerfile
swagger.yaml sources/saml: Add NameID Policy field, sent with AuthnRequest 2020-07-08 16:18:09 +02:00

README.md

passbook logopassbook

CI Build status Tests Code Coverage Docker pulls Docker pulls (gatekeeper) Latest version LGTM Grade

What is passbook?

passbook is an open-source Identity Provider focused on flexibility and versatility. You can use passbook in an existing environment to add support for new protocols. passbook is also a great solution for implementing signup/recovery/etc in your application, so you don't have to deal with it.

Installation

For small/test setups it is recommended to use docker-compose.

wget https://raw.githubusercontent.com/BeryJu/passbook/master/docker-compose.yml
# Optionally enable Error-reporting
# export PASSBOOK_ERROR_REPORTING=true
# Optionally deploy a different version
# export PASSBOOK_TAG=0.8.15-beta
# If this is a productive installation, set a different PostgreSQL Password
# export PG_PASS=$(pwgen 40 1)
docker-compose pull
docker-compose up -d
docker-compose exec server ./manage.py migrate

For bigger setups, there is a Helm Chart in the helm/ directory. This is documented here

Screenshots

Development

To develop on passbook, you need a system with Python 3.7+ (3.8 is recommended). passbook uses pipenv for managing dependencies.

To get started, run

python3 -m pip install pipenv
git clone https://github.com/BeryJu/passbook.git
cd passbook
pipenv shell
pipenv sync -d

Since passbook uses PostgreSQL-specific fields, you also need a local PostgreSQL instance to develop. passbook also uses redis for caching and message queueing. For these databases you can use Postgres.app and Redis.app on macOS or use it the docker-compose file in scripts/docker-compose.yml.

To tell passbook about these databases, create a file in the project root called local.env.yml with the following contents:

debug: true
postgresql:
  user: postgres

log_level: debug
error_reporting: false

Security

See SECURITY.md