feat: Implement account creation module with realistic data generation

- Add DataGenerator class for generating emails, passwords, birthdates, and names.
- Create README.md detailing features, usage, and process flow for account creation.
- Develop CLI for initiating account creation with optional referral URL.
- Introduce nameDatabase for realistic first and last name generation.
- Define CreatedAccount interface for structured account data.
This commit is contained in:
2025-11-07 20:45:18 +01:00
parent 555efa1db0
commit 6be9cca80f
9 changed files with 2205 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
"ts-start": "node --loader ts-node/esm ./src/index.ts",
"dev": "ts-node ./src/index.ts -dev",
"buy": "node --enable-source-maps ./dist/index.js -buy",
"creator": "ts-node ./src/account-creation/cli.ts",
"dashboard": "node --enable-source-maps ./dist/index.js -dashboard",
"dashboard-dev": "ts-node ./src/index.ts -dashboard",
"lint": "eslint \"src/**/*.{ts,tsx}\"",