https://github.com/fischerscode/parse-server-keycloak-flutter
A playground for authenticating a parse based Flutter application against a KeyCloak server using openid.
https://github.com/fischerscode/parse-server-keycloak-flutter
Last synced: about 1 month ago
JSON representation
A playground for authenticating a parse based Flutter application against a KeyCloak server using openid.
- Host: GitHub
- URL: https://github.com/fischerscode/parse-server-keycloak-flutter
- Owner: fischerscode
- License: mit
- Created: 2021-03-03T11:12:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-04T23:52:51.000Z (about 5 years ago)
- Last Synced: 2025-01-16T20:18:39.301Z (over 1 year ago)
- Language: Dart
- Homepage:
- Size: 77.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# parse_keycloak
A playground for authenticating a parse based Flutter application against a KeyCloak server using openid.
## Getting Started
### Generate SSL cert for keycloak:
```
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout keycloak.key -out keycloak.crt
```
### Start servers
```shell script
docker-compose up -d
```
### Stop servers
```shell script
docker-compose down
```
### Stop servers and delete data
```shell script
docker-compose down -v
```
### Links
- [phpldapadmin](http://localhost:8081) (login: `cn=admin,dc=example,dc=org`, password: `password`)
- [KeyCloak](http://localhost:8080) (login: `admin`, password: `password`)