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
-[Node.js](https://nodejs.org/) with **npm** (this repo pins **`npm@11.13.0`** in [`frontend/package.json`](frontend/package.json); use a compatible Node version for Angular 21)
15
-
-**PostgreSQL** (e.g. 17) reachable on `localhost:5432` with database `hickory_chat` and user `hickory` — see [`backend/src/HickoryChat.Api/appsettings.Development.json`](backend/src/HickoryChat.Api/appsettings.Development.json) for the dev connection string
15
+
-**PostgreSQL** (e.g. 17) reachable on `localhost:5432` with database `chateando` and user `chateando` — see [`backend/src/Chateando.Api/appsettings.Development.json`](backend/src/Chateando.Api/appsettings.Development.json) for the dev connection string
16
16
17
17
---
18
18
@@ -26,7 +26,7 @@ From the repository root:
26
26
cp .env.example .env
27
27
```
28
28
29
-
Edit `.env` (defaults in [`.env.example`](.env.example) use dev password **`hickory_dev_password`**, same as [`appsettings.Development.json`](backend/src/HickoryChat.Api/appsettings.Development.json)):
29
+
Edit `.env` (defaults in [`.env.example`](.env.example) use dev password **`chateando_dev_password`**, same as [`appsettings.Development.json`](backend/src/Chateando.Api/appsettings.Development.json)):
30
30
31
31
-`POSTGRES_PASSWORD` — database password (used by Postgres and the backend container)
32
32
-`JWT_SIGNING_KEY` — at least 32 characters (API JWT signing)
@@ -47,9 +47,9 @@ From the repository root:
47
47
| Chat UI |http://localhost:4200| nginx proxies `/api` and `/hubs` to API |
48
48
| Admin UI |http://localhost:4201| nginx proxies `/api` to API |
49
49
| API |http://localhost:5095| Direct backend (optional; UI uses proxies) |
50
-
| PostgreSQL| localhost:5432 | User `hickory`, DB `hickory_chat`|
50
+
| PostgreSQL| localhost:5432 | User `chateando`, DB `chateando`|
51
51
52
-
On startup, the **backend** container runs SQL migrations (`dotnet HickoryChat.Api.dll migrate`) then starts the API. Chat file uploads are stored in the **`chat_files`** Docker volume at `/app/chat-files` inside the backend container.
52
+
On startup, the **backend** container runs SQL migrations (`dotnet Chateando.Api.dll migrate`) then starts the API. Chat file uploads are stored in the **`chat_files`** Docker volume at `/app/chat-files` inside the backend container.
**Troubleshooting `28P01: password authentication failed for user "hickory"`**
91
+
**Troubleshooting `28P01: password authentication failed for user "chateando"`**
92
92
93
93
- Password in `appsettings.Development.json` (or User Secrets) does not match the Postgres instance.
94
94
- If you **changed**`POSTGRES_PASSWORD` in `.env` after the DB volume already existed, Postgres still has the **old** password. Either use that old password in `appsettings.Development.json`, or reset and use the shared dev password:
95
95
96
96
```bash
97
-
# In .env: POSTGRES_PASSWORD=hickory_dev_password
97
+
# In .env: POSTGRES_PASSWORD=chateando_dev_password
98
98
docker compose down -v
99
99
docker compose up -d postgres
100
-
cd backend && dotnet run --project src/HickoryChat.Api/HickoryChat.Api.csproj -- migrate
100
+
cd backend && dotnet run --project src/Chateando.Api/Chateando.Api.csproj -- migrate
101
101
```
102
102
103
103
---
@@ -108,19 +108,19 @@ Requires PostgreSQL as above (native install or Docker on port 5432). From the r
108
108
109
109
```bash
110
110
cd backend
111
-
dotnet run --project src/HickoryChat.Api/HickoryChat.Api.csproj
111
+
dotnet run --project src/Chateando.Api/Chateando.Api.csproj
112
112
```
113
113
114
-
By default the API listens on **https://localhost:7118** and **http://localhost:5095** (see [`backend/src/HickoryChat.Api/Properties/launchSettings.json`](backend/src/HickoryChat.Api/Properties/launchSettings.json)). Use `--launch-profile https` or `http` if you need a specific profile:
114
+
By default the API listens on **https://localhost:7118** and **http://localhost:5095** (see [`backend/src/Chateando.Api/Properties/launchSettings.json`](backend/src/Chateando.Api/Properties/launchSettings.json)). Use `--launch-profile https` or `http` if you need a specific profile:
115
115
116
116
```bash
117
-
dotnet run --project src/HickoryChat.Api/HickoryChat.Api.csproj --launch-profile https
117
+
dotnet run --project src/Chateando.Api/Chateando.Api.csproj --launch-profile https
118
118
```
119
119
120
-
Set **`ConnectionStrings:DefaultConnection`** in `appsettings.Development.json` (Npgsql format: `Host=localhost;Port=5432;...`; default password `hickory_dev_password`). When using Docker Postgres, keep it in sync with `.env` — see [Run API locally against Docker Postgres](#run-api-locally-against-docker-postgres). To apply versioned SQL migrations and exit:
120
+
Set **`ConnectionStrings:DefaultConnection`** in `appsettings.Development.json` (Npgsql format: `Host=localhost;Port=5432;...`; default password `chateando_dev_password`). When using Docker Postgres, keep it in sync with `.env` — see [Run API locally against Docker Postgres](#run-api-locally-against-docker-postgres). To apply versioned SQL migrations and exit:
121
121
122
122
```bash
123
-
dotnet run --project src/HickoryChat.Api/HickoryChat.Api.csproj -- migrate
123
+
dotnet run --project src/Chateando.Api/Chateando.Api.csproj -- migrate
124
124
```
125
125
126
126
More detail: [`backend/README.md`](backend/README.md).
@@ -155,13 +155,13 @@ More detail: [`admin/README.md`](admin/README.md).
155
155
156
156
## Desktop app (Electron, Windows LAN)
157
157
158
-
The **`desktop/`** package wraps the chat UI in Electron for ~80 LAN PCs (no HTTPS per machine). The installer bakes the server IP via `desktop/.env.build` (`HICKORY_HOST`).
158
+
The **`desktop/`** package wraps the chat UI in Electron for ~80 LAN PCs (no HTTPS per machine). The installer bakes the server IP via `desktop/.env.build` (`CHATEANDO_HOST`).
Copy file name to clipboardExpand all lines: admin/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Hickory Admin
1
+
# Chateando Admin
2
2
3
-
Angular 21 + DevExtreme admin app for Hickory Chat. Runs on **http://localhost:4201/** and proxies `/api` to the .NET API (default **http://localhost:5095**).
3
+
Angular 21 + DevExtreme admin app for Chateando. Runs on **http://localhost:4201/** and proxies `/api` to the .NET API (default **http://localhost:5095**).
0 commit comments