keycloak-reg-ui/README.md

19 lines
362 B
Markdown
Raw Normal View History

2019-07-22 14:43:45 +00:00
2023-08-17 22:23:04 +00:00
## Local
2019-07-24 22:21:08 +00:00
```
2023-08-17 22:23:04 +00:00
$ yarn install
2019-07-22 14:43:45 +00:00
2023-08-17 22:23:04 +00:00
# Edit `src/App.js` and `src/components/pages/RegisterPage.js` to set
# `basePath` and `apiUrl` and then run:
$ yarn build
$ serve -s build
2019-07-24 22:21:08 +00:00
```
2019-07-22 14:43:45 +00:00
2023-08-17 22:23:04 +00:00
## Docker
2019-07-22 14:43:45 +00:00
2023-08-17 22:23:04 +00:00
```
$ docker build -t cerc/keycloak-reg-ui:local .
2019-07-24 22:21:08 +00:00
2023-08-17 22:23:04 +00:00
# Edit config.yml for your API settings and then run:
$ docker run -d -p 3000:80 -v .:/config cerc/keycloak-reg-ui:local
```