You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After `abi stack start`, the web UI is at `http://localhost:3042`.
171
171
172
-
Default admin credentials (set in `config.local.yaml` under `nexus_config.users`):
172
+
Default admin credentials:
173
173
174
174
| Email | Password |
175
175
|---|---|
176
176
|`admin@example.com`|`Admin1234!`|
177
177
178
178
Password login is enabled via `auth_password_enabled: true` in `config.local.yaml`. Set it to `false` to switch back to magic link.
179
179
180
-
If you see "Incorrect email or password", the Postgres volume may have been initialized with a different password. Reset it:
180
+
**How the password is set:** On first boot, the seeder looks for `NEXUS_USER_ADMIN_EXAMPLE_COM_PASSWORD` in `.env`. If found, it uses that value. If missing, it generates a random password and writes it back to `.env`. The `.env` in this repo ships with `Admin1234!` pre-set, so all teammates get the same password as long as they don't delete that line.
181
181
182
+
If you see "Incorrect email or password":
183
+
184
+
**Option A (no data to keep):** Wipe and reseed.
185
+
```bash
186
+
docker volume rm abi_postgres_data
187
+
abi stack start
188
+
```
189
+
190
+
**Option B (keep existing data):** The user already exists with a mismatched hash. Add the missing key to `.env` then force-update the hash:
0 commit comments