Note about existing keycloak requirement
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
decentral1se
2021-06-13 18:31:24 +02:00
parent 777bd824a5
commit ef40138911

View File

@ -65,10 +65,13 @@ It's a [FastAPI](https://fastapi.tiangolo.com/) application (if you know
[Flask](https://flask.palletsprojects.com/en/2.0.x/) / [Flask](https://flask.palletsprojects.com/en/2.0.x/) /
[Sanic](https://sanic.readthedocs.io/en/stable/) then it is more or less the [Sanic](https://sanic.readthedocs.io/en/stable/) then it is more or less the
same thing). Currently being developed with Python 3.9. Once we move out of the same thing). Currently being developed with Python 3.9. Once we move out of the
prototype stage, more version compatability will be offered. prototype stage, more version compatability will be offered. You'll need a
working Keycloak install as well to fill in correct `.env` values. A more
covenient development environment will come along shortly too.
``` ```
$ docker run -p 6379:6379 -d redis:6-alpine $ docker run -p 6379:6379 -d redis:6-alpine
$ set -a && source .envrc && set +a $ cp .env.sample .env # fill with real values
$ set -a && source .env && set +a
$ make $ make
``` ```