Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add user creation instructions #4462

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion deploy/LOCAL_INSTALL_HELM.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ Detailed instructions for how to install and update *seqr* may be found in the [
### Configuring Authentication for seqr

#### Username/password basic auth
This is the default authentication mechanism for seqr, and does not need any special steps for configuration.
This is the default authentication mechanism for seqr. After seqr is running, you can run the following steps to create an inital superuser account.
All other user accounts can then be added through normal application use.

```bash
# Get the name of the running seqr pod
kubectl get pod

kubectl exec -it seqr-POD-ID -- /bin/bash
./manage.py createsuperuser
```

#### Google OAuth2
Using Google OAuth2 for authentication requires setting up a Google Cloud project and configuring the seqr instance
Expand Down
Loading