Kormo Vai App Admin Dashboard How To Use This Scaffolding Clone This Repo git clone https://github.com/codernex/koromvai-admin.git Use pnpm package manager to install pnpm install Create Environment Variable cp -r .env.example .env Modify your thing in your way you like By default, this scaffolding uses MySQL as the database. If you want to change the default database, follow these steps: nano apps/api/src/orm.config.ts export const appDataSource = new DataSource({ type: "mysql", database: sanitizedConfig.DB_NAME, username: sanitizedConfig.DB_USER, password: sanitizedConfig.DB_PASS, entities: [User], logging: false, synchronize: sanitizedConfig.NODE_ENV === "development", }); If you like this repo, please give me a GitHub star.