Skip to main content

Account Settings

Account settings control your personal profile, authentication, and API access. These settings apply to your individual account across all teams you belong to.

Profile Settings

Update your basic account information:

  • Name -- Your display name shown in team member lists and activity logs
  • Email -- Your login email and the address used for notifications and invitations

To update your profile:

  1. Click your profile in the Appliku dashboard
  2. Go to Account Settings
  3. Update your name or email
  4. Save changes

Password Management

Change your account password:

  1. Go to Account Settings
  2. Navigate to the Password section
  3. Enter your current password
  4. Enter and confirm your new password
  5. Save
tip

Use a strong, unique password. Consider using a password manager to generate and store complex passwords.

Two-Factor Authentication (2FA)

Add an extra layer of security to your account with two-factor authentication. When enabled, you must provide a time-based one-time password (TOTP) from an authenticator app in addition to your password when logging in.

Enabling 2FA

  1. Go to Account Settings
  2. Navigate to the Two-Factor Authentication section
  3. Click Enable 2FA
  4. Scan the QR code with your authenticator app (e.g., Google Authenticator, Authy, 1Password)
  5. Enter the verification code from your app to confirm
  6. Save your recovery codes in a secure location
warning

Store your recovery codes safely. If you lose access to your authenticator app and do not have recovery codes, you will be locked out of your account.

Disabling 2FA

  1. Go to Account Settings > Two-Factor Authentication
  2. Click Disable 2FA
  3. Confirm with your current password or TOTP code

API Token Management

API tokens allow programmatic access to the Appliku API. They are used by the Appliku CLI and for custom integrations.

Creating an API Token

  1. Go to Account Settings
  2. Navigate to the API Tokens section
  3. Click Create Token
  4. Give the token a descriptive name (e.g., "CLI access", "CI/CD pipeline")
  5. Copy the token immediately -- it is only shown once

Using Your API Token

With the Appliku CLI:

# Set as environment variable
export APPLIKU_TOKEN=your-token-here
appliku apps list

# Or save to config file
appliku auth login

The CLI resolves tokens in this order:

  1. Explicit parameter passed to the command
  2. APPLIKU_TOKEN environment variable
  3. Config file at ~/.config/appliku/config.toml

With the API directly:

curl -H "Authorization: Bearer your-token-here" \
https://api.appliku.com/api/v1/teams/

Revoking a Token

  1. Go to Account Settings > API Tokens
  2. Find the token you want to revoke
  3. Click Delete
  4. The token is immediately invalidated
note

Revoking a token immediately breaks any integrations using it. Update your CLI configuration or CI/CD pipelines before revoking tokens that are in active use.

Next Steps