AdministrationCommand Line
User Management Command
The gig user command is used to manage user accounts in Gigantics.
Usage
gig user [subcommand] [options]Description
The user command provides functionality to create, modify, delete, and list user accounts in the Gigantics system.
Common Subcommands
add- Add a new userremove- Remove an existing userlist- List all usersupdate- Update user informationpassword- Change user password
Examples
# List all users
gig user list
# Add a new user
gig user add --username=john --email=john@example.com
# Remove a user
gig user remove --username=john
# Change user password
gig user password --username=johnOptions
--username [name]- Specify username--email [email]- Specify user email--role [role]- Specify user role--active [true/false]- Set user active status
Best Practices
- Always verify user information before creating accounts
- Use strong passwords for user accounts
- Assign appropriate roles based on user responsibilities
- Regularly audit user accounts and remove inactive ones