> ## Documentation Index
> Fetch the complete documentation index at: https://docs.base44.com/llms.txt
> Use this file to discover all available pages before exploring further.

# base44 auth push

> Push the local auth configuration to Base44.

<Warning>
  This page is part of an AI coding agent skill and is written for agents, not humans. For the human-readable Base44 docs, see the [developer documentation](/developers).
</Warning>

# base44 auth push

Push the local auth configuration to Base44.

## Syntax

```bash theme={null}
npx base44 auth push [options]
```

## Options

| Option      | Description              | Required |
| ----------- | ------------------------ | -------- |
| `-y, --yes` | Skip confirmation prompt | No       |

## Examples

```bash theme={null}
# Push auth config (interactive confirmation)
npx base44 auth push

# Push auth config without confirmation (for CI/CD)
npx base44 auth push -y
```

## Notes

* Requires a local auth config file to exist. Run `npx base44 auth pull` first if you haven't set up a local auth config.
* If the local config has no login methods enabled, the CLI will warn that pushing will lock out all users.
* In non-interactive mode (CI/CD), `--yes` is required.
