Skip to content

Commit 7f111c4

Browse files
committed
docs: correct default admin account password
1 parent 645f802 commit 7f111c4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ open-wearables/
3939
# Start all services
4040
docker compose up -d
4141

42-
# Admin account and series type definitions are auto-created on startup (admin@admin.com / secret123)
42+
# Admin account and series type definitions are auto-created on startup (admin@admin.com / your-secure-password)
4343
# Seed sample test data (optional)
4444
make seed
4545

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Get Open Wearables up and running in minutes.
9393

9494
4. **Log in to the developer portal:**
9595

96-
An admin account is automatically created on startup using the `ADMIN_EMAIL` and `ADMIN_PASSWORD` environment variables (defaults: `admin@admin.com` / `secret123`).
96+
An admin account is automatically created on startup using the `ADMIN_EMAIL` and `ADMIN_PASSWORD` environment variables (defaults: `admin@admin.com` / `your-secure-password`).
9797

9898
Open http://localhost:3000 to access the developer portal and create API keys.
9999

backend/app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Settings(BaseSettings):
6161

6262
# ADMIN ACCOUNT SEED
6363
admin_email: str = "admin@admin.com"
64-
admin_password: SecretStr = SecretStr("secret123")
64+
admin_password: SecretStr = SecretStr("your-secure-password")
6565

6666
# Time to live for sleep state in Redis
6767
redis_sleep_ttl_seconds: int = 24 * 3600 # 24 hours

contributing/developing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cd open-wearables
2323
# Start all services with hot-reload (recommended for development)
2424
make watch
2525

26-
# Admin account is auto-created on startup (admin@admin.com / secret123)
26+
# Admin account is auto-created on startup (admin@admin.com / your-secure-password)
2727
# Seed sample test data (optional)
2828
make seed
2929
```

docs/deployment/railway.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Railway provides the fastest way to get a production Open Wearables instance run
2020
/>
2121

2222
<Tip>
23-
An admin account is created automatically on first startup (`admin@admin.com` / `secret123`). To use custom credentials, set `ADMIN_EMAIL` and `ADMIN_PASSWORD` on the **Backend** service before deploying (as shown on the video)
23+
An admin account is created automatically on first startup (`admin@admin.com` / `your-secure-password`). To use custom credentials, set `ADMIN_EMAIL` and `ADMIN_PASSWORD` on the **Backend** service before deploying (as shown on the video)
2424
</Tip>
2525

2626
## What gets deployed

docs/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Get Open Wearables running locally and start integrating wearable device data.
133133
Should return: `{"message": "Server is running!"}`
134134

135135
2. **Create an API key**:
136-
An admin account is automatically created on startup using the `ADMIN_EMAIL` and `ADMIN_PASSWORD` environment variables (defaults: `admin@admin.com` / `secret123`).
136+
An admin account is automatically created on startup using the `ADMIN_EMAIL` and `ADMIN_PASSWORD` environment variables (defaults: `admin@admin.com` / `your-secure-password`).
137137

138138
Use the admin panel at http://localhost:3000/ to log in and generate API keys.
139139

0 commit comments

Comments
 (0)