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
refactor: migrate field widget components from RxJS to Angular signals (#1581)
* refactor: migrate field widget components from RxJS to Angular signals
Replace RxJS patterns (Subject, Observable, subscribe, pipe operators) with
Angular signals (signal, computed, toSignal, effect) in 5 field widget
components: language, country, phone, foreign-key edit, and foreign-key filter.
Also replace any types with proper interfaces throughout.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: update setup instructions to reflect new setup page
Replace auto-generated credentials documentation with setup page flow,
as RocketAdmin now redirects to a setup page for initial admin account creation.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Refactor country and language components: replace effect with computed for flag derivation
The selectedFlag was a writable signal updated via effect(), but it's purely derived
from the form control value — computed() is the correct primitive here.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* remove effect usage
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,5 +100,6 @@ This section provides clear and concise instructions for installing RocketAdmin
100
100
101
101
## Usage
102
102
103
-
1. After installation rocketadmin will create a user with email admin@email.local and autogenerated password. The message will be `Admin user created with email: "admin@email.local" and password: "<password>"`
104
-
2. You can sign in using these credentials. We recommend to change email and password after first login
103
+
1. After installation, open RocketAdmin in your browser at `http://localhost:8080`. You will be redirected to the setup page.
104
+
2. On the setup page, create your admin account by entering your email and password.
105
+
3. After completing the setup, sign in with your new credentials.
0 commit comments