Upgrade documentations..

This commit is contained in:
2020-04-29 20:34:38 +02:00
parent a09d267dec
commit 599cdefb02
3 changed files with 107 additions and 0 deletions

66
README.accounts Normal file
View File

@ -0,0 +1,66 @@
# =================
# Creating Accounts
# =================
# see: https://docs.bigbluebutton.org/greenlight/gl-admin.html#creating-accounts
# The following examples assume you have Greenlight installed in
# the /usr/local/greenlight directory. Before running the commands,
# change into the /usr/local/greenlight directory.
#
cd /usr/local/greenlight
# -----
# Creating a User Account
# -----
# To create an User account with specified values, in the Greenlight
# directory, run the following command:
#
# docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","user"]
#
# Example:
#
# docker exec greenlight-v2 bundle exec rake user:create["Maex","mx@so36.net","e6i/U-2NRpLa","user"]
#
docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","user"]
# Once the command has finished it will print the accounts email and password.
# -----
# Creating an Administrator Account
# -----
# To create an Administrator account with the default values, in the
# Greenlight directory, run the following command:
#
docker exec greenlight-v2 bundle exec rake admin:create
# If you would like to configure the name, email, or password of the
# Administrator account, replace the previous command with this:
#
# docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","admin"]
#
# Example:
#
# docker exec greenlight-v2 bundle exec rake user:create["Christoph","ckubu@oopen.de","<geheim>","admin"]
#
docker exec greenlight-v2 bundle exec rake user:create["<name>","<email>","<password>","admin"]
# Once the command has finished it will print the accounts email and password.
# ==============
# Managing Users
# ==============
# see: https://docs.bigbluebutton.org/greenlight/gl-admin.html#managing-users
# -----
# Accessing the Administrator Panel
# -----
# Greenlight has an administrator account that gives you the ability to manage
# users on the server.