Improve ARCHITECTURE.md more
Some checks are pending
Node.js CI / build (16.x) (push) Waiting to run

There was some old poorly-phrased text in the loginserver section.
This commit is contained in:
Guangcong Luo 2024-11-05 00:10:39 +09:00
parent 2f68e82058
commit 453530d4d1

View File

@ -49,6 +49,8 @@ It was written long ago, so instead of a single JS entry point, it includes a lo
Login server
------------
The clients login server, which handles logins and most database interaction, is written in TypeScript in progress. The backend is currently split between a MySQL InnoDB database (for users, ladder, and most other things) and a Postgres (technically Cockroach) database (for Replays).
The clients login server, which handles logins and most database interaction, is written in TypeScript. The backend is currently split between a MySQL InnoDB database (for users, ladder, and most other things) and a Postgres (technically Cockroach) database (for Replays).
Its entry point is [server.ts](https://github.com/smogon/pokemon-showdown-loginserver/blob/master/src/server.ts).
It's intended to replace all of the old PHP code in the Client, but that migration is only halfway done at the moment.