mets-generator
v1.0.4
Published
Mets Generator is a CLI tool used to initialize new projects with a predefined template.
Readme
Mets Generator
Mets Generator is a CLI tool used to initialize new projects with a predefined template.
Usage
To create a new project, run the following command:
npx mets-generator <project-name>Project Structure
<project-name>/
├── .editorconfig
├── .env
├── .env.example
├── .eslintignore
├── .eslintrc
├── .gitignore
├── .prettierignore
├── .prettierrc
├── api/
│ ├── index.ts
├── nodemon.json
├── package.json
├── README.md
├── rest/
│ ├── auth.rest
│ ├── mail.rest
├── src/
│ ├── config.ts
│ ├── controllers/
│ │ ├── auth.ts
│ │ ├── index.ts
│ │ ├── mail.ts
│ │ ├── upload.ts
│ ├── database/
│ │ ├── index.ts
│ ├── models/
│ │ ├── account.ts
│ │ ├── index.ts
│ ├── routes/
│ │ ├── auth.ts
│ │ ├── index.ts
│ │ ├── mail.ts
│ │ ├── upload.ts
│ ├── types/
│ │ ├── index.d.ts
│ ├── utils/
├── tsconfig.json
├── vercel.json
