Files
kycnotme/web
2025-06-17 15:37:10 +00:00
..
2025-06-15 13:18:22 +00:00
2025-06-09 11:18:06 +00:00
2025-06-17 15:37:10 +00:00
2025-05-19 10:23:36 +00:00
2025-06-04 16:41:32 +00:00
2025-05-19 10:23:36 +00:00
2025-05-19 10:23:36 +00:00
2025-05-19 10:23:36 +00:00
2025-05-19 10:23:36 +00:00
2025-05-19 10:23:36 +00:00
2025-06-13 06:39:29 +00:00
2025-06-09 10:00:55 +00:00
2025-06-09 10:00:55 +00:00
2025-05-22 22:38:41 +00:00
2025-06-15 13:18:22 +00:00
2025-06-10 17:42:42 +00:00
2025-05-26 14:45:22 +00:00
2025-06-09 10:00:55 +00:00

KYCnot.me website

KYCnot.me

Commands

All commands are run from the root of the project, from a terminal:

Command Action
nvm install Installs and uses the correct version of node
npm install Installs dependencies
npm run dev Starts local dev server at localhost:4321
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro -- --help Get help using the Astro CLI
npm run db-admin Runs Prisma Studio (database admin)
npm run db-gen Generates the Prisma client without running migrations
npm run db-push Updates the database schema with latest changes (development mode).
npm run db-seed Seeds the database with fake data (development mode)
npm run format Formats the code with Prettier
npm run lint Lints the code with ESLint
npm run lint-fix Lints the code with ESLint and fixes the issues

Note

: db-seed support the -- --services=n flag, where n is the number of fake services to add. It defaults to 10. For example, npm run db-seed -- --services=5 will add 5 fake services.

Note

: db-seed create default users with tokens: admin, moderator, verified, normal (override with DEV_*****_USER_SECRET_TOKEN env vars)