├── .commitlintrc.json ├── .czrc ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg ├── pre-commit └── prepare-commit-msg ├── .lintstagedrc.json ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── mantis-app.mjs ├── package.json ├── src ├── actions │ ├── abstract.action.ts │ ├── actionTypes.ts │ └── start │ │ ├── start.action.ts │ │ └── start.types.ts ├── commands │ ├── init.command.ts │ └── start.command.ts ├── mantis-app.ts └── utils │ ├── files.helper.ts │ ├── globalValidators.helper.ts │ ├── orbitLogger.helper.ts │ ├── prettyPrint.helper.ts │ ├── process.helper.ts │ ├── utilities.helper.ts │ └── welcome.helper.ts ├── templates └── mantis-todo │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── .vscode │ ├── extensions.json │ └── settings.json │ ├── LICENSE │ ├── README.md │ ├── _gitignore │ ├── apps │ ├── mobile-client-e2e │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── cypress.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── e2e │ │ │ │ └── app.cy.ts │ │ │ ├── fixtures │ │ │ │ └── example.json │ │ │ └── support │ │ │ │ ├── app.po.ts │ │ │ │ ├── commands.ts │ │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── mobile-client │ │ ├── .env.development │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .storybook │ │ │ ├── main.ts │ │ │ ├── preview.ts │ │ │ └── tsconfig.json │ │ ├── capacitor.config.ts │ │ ├── index.html │ │ ├── ionic.config.json │ │ ├── package.json │ │ ├── postcss.config.cjs │ │ ├── project.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.server.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── components │ │ │ │ │ ├── todo-item │ │ │ │ │ │ ├── todo-item.component.html │ │ │ │ │ │ ├── todo-item.component.stories.ts │ │ │ │ │ │ └── todo-item.component.ts │ │ │ │ │ └── todo-modal │ │ │ │ │ │ ├── todo-modal.component.html │ │ │ │ │ │ ├── todo-modal.component.stories.ts │ │ │ │ │ │ └── todo-modal.component.ts │ │ │ │ ├── pages │ │ │ │ │ ├── (home).page.stories.ts │ │ │ │ │ └── (home).page.ts │ │ │ │ ├── services │ │ │ │ │ ├── config.service.ts │ │ │ │ │ └── todos.service.ts │ │ │ │ └── stories │ │ │ │ │ └── todos.msw.ts │ │ │ ├── favicon.ico │ │ │ ├── main.server.ts │ │ │ ├── main.ts │ │ │ ├── public │ │ │ │ ├── assets │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── analog.svg │ │ │ │ └── mockServiceWorker.js │ │ │ ├── server │ │ │ │ └── routes │ │ │ │ │ └── v1 │ │ │ │ │ └── hello.ts │ │ │ ├── styles.scss │ │ │ ├── test-setup.ts │ │ │ └── vite-env.d.ts │ │ ├── tailwind.config.cjs │ │ ├── tsconfig.app.json │ │ ├── tsconfig.editor.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── vite.config.ts │ ├── web-client-e2e │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── cypress.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── e2e │ │ │ │ └── app.cy.ts │ │ │ ├── fixtures │ │ │ │ └── example.json │ │ │ └── support │ │ │ │ ├── app.po.ts │ │ │ │ ├── commands.ts │ │ │ │ └── e2e.ts │ │ └── tsconfig.json │ └── web-client │ │ ├── .env.development │ │ ├── .env.production │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .storybook │ │ ├── main.ts │ │ ├── preview.ts │ │ └── tsconfig.json │ │ ├── index.html │ │ ├── netlify.toml │ │ ├── package.json │ │ ├── postcss.config.cjs │ │ ├── project.json │ │ ├── scripts │ │ └── startLocalDb.js │ │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── components │ │ │ │ ├── add-todo │ │ │ │ │ ├── add-todo.component.html │ │ │ │ │ ├── add-todo.component.stories.ts │ │ │ │ │ └── add-todo.component.ts │ │ │ │ ├── todo-item │ │ │ │ │ ├── todo-item.component.html │ │ │ │ │ ├── todo-item.component.stories.ts │ │ │ │ │ └── todo-item.component.ts │ │ │ │ └── todo-list │ │ │ │ │ ├── todo-list.component.html │ │ │ │ │ ├── todo-list.component.stories.ts │ │ │ │ │ └── todo-list.component.ts │ │ │ ├── pages │ │ │ │ ├── (home).page.stories.ts │ │ │ │ └── (home).page.ts │ │ │ ├── services │ │ │ │ ├── config.service.ts │ │ │ │ └── todos.service.ts │ │ │ └── stories │ │ │ │ └── todos.msw.ts │ │ ├── favicon.ico │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── analog.svg │ │ │ └── mockServiceWorker.js │ │ ├── server │ │ │ ├── db │ │ │ │ └── mongo.ts │ │ │ ├── middleware │ │ │ │ └── cors.ts │ │ │ ├── routes │ │ │ │ └── v1 │ │ │ │ │ ├── todos.get.ts │ │ │ │ │ ├── todos.post.ts │ │ │ │ │ └── todos │ │ │ │ │ ├── [id].delete.ts │ │ │ │ │ └── [id].patch.ts │ │ │ ├── schemas │ │ │ │ └── todo.schema.ts │ │ │ └── utils │ │ │ │ └── validation.ts │ │ ├── styles.css │ │ ├── test-setup.ts │ │ └── vite-env.d.ts │ │ ├── tailwind.config.cjs │ │ ├── tsconfig.app.json │ │ ├── tsconfig.editor.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── vite.config.ts │ ├── nx.json │ ├── package.json │ ├── pnpm-lock.yaml │ └── tsconfig.base.json └── tsconfig.json /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "./node_modules/cz-conventional-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | templates 2 | dist 3 | logs 4 | node_modules 5 | .nx -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- 1 | exec < /dev/tty && npx cz --hook || true -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | logs 3 | node_modules 4 | .nx 5 | templates -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/.release-it.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/mantis-app.mjs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import '../dist/mantis-app.mjs'; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/abstract.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/actions/abstract.action.ts -------------------------------------------------------------------------------- /src/actions/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/actions/actionTypes.ts -------------------------------------------------------------------------------- /src/actions/start/start.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/actions/start/start.action.ts -------------------------------------------------------------------------------- /src/actions/start/start.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/actions/start/start.types.ts -------------------------------------------------------------------------------- /src/commands/init.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/commands/init.command.ts -------------------------------------------------------------------------------- /src/commands/start.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/commands/start.command.ts -------------------------------------------------------------------------------- /src/mantis-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/mantis-app.ts -------------------------------------------------------------------------------- /src/utils/files.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/files.helper.ts -------------------------------------------------------------------------------- /src/utils/globalValidators.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/globalValidators.helper.ts -------------------------------------------------------------------------------- /src/utils/orbitLogger.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/orbitLogger.helper.ts -------------------------------------------------------------------------------- /src/utils/prettyPrint.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/prettyPrint.helper.ts -------------------------------------------------------------------------------- /src/utils/process.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/process.helper.ts -------------------------------------------------------------------------------- /src/utils/utilities.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/utilities.helper.ts -------------------------------------------------------------------------------- /src/utils/welcome.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/src/utils/welcome.helper.ts -------------------------------------------------------------------------------- /templates/mantis-todo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.editorconfig -------------------------------------------------------------------------------- /templates/mantis-todo/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.eslintrc.json -------------------------------------------------------------------------------- /templates/mantis-todo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.gitignore -------------------------------------------------------------------------------- /templates/mantis-todo/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.prettierignore -------------------------------------------------------------------------------- /templates/mantis-todo/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.prettierrc -------------------------------------------------------------------------------- /templates/mantis-todo/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.vscode/extensions.json -------------------------------------------------------------------------------- /templates/mantis-todo/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/.vscode/settings.json -------------------------------------------------------------------------------- /templates/mantis-todo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/LICENSE -------------------------------------------------------------------------------- /templates/mantis-todo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/README.md -------------------------------------------------------------------------------- /templates/mantis-todo/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/_gitignore -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/.eslintrc.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/cypress.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/project.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/src/support/app.po.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client-e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/.env.development: -------------------------------------------------------------------------------- 1 | VITE_PUBLIC_BACKEND_URL="http://localhost:4200" 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/.eslintrc.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/.storybook/main.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/.storybook/preview.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/.storybook/tsconfig.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/capacitor.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/capacitor.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/index.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/ionic.config.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/postcss.config.cjs -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/project.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/app.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/app.config.server.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/app.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/components/todo-item/todo-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/components/todo-item/todo-item.component.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/components/todo-item/todo-item.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/components/todo-item/todo-item.component.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/components/todo-item/todo-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/components/todo-item/todo-item.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/components/todo-modal/todo-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/components/todo-modal/todo-modal.component.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/components/todo-modal/todo-modal.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/components/todo-modal/todo-modal.component.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/components/todo-modal/todo-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/components/todo-modal/todo-modal.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/pages/(home).page.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/pages/(home).page.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/pages/(home).page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/pages/(home).page.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/services/config.service.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/services/todos.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/services/todos.service.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/app/stories/todos.msw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/app/stories/todos.msw.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/favicon.ico -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/main.server.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/main.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/public/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/public/assets/analog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/public/assets/analog.svg -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/public/mockServiceWorker.js -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/server/routes/v1/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/server/routes/v1/hello.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/styles.scss -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/test-setup.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/src/vite-env.d.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/tailwind.config.cjs -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/tsconfig.app.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/tsconfig.editor.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/tsconfig.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/tsconfig.spec.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/mobile-client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/mobile-client/vite.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/.eslintrc.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/cypress.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/project.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getTitle = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client-e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/.env.development -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.env.production: -------------------------------------------------------------------------------- 1 | FRONTEND_URLS="https://mantis-todo.netlify.app" 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/.eslintrc.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/.storybook/main.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/.storybook/preview.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/.storybook/tsconfig.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/index.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/netlify.toml -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/postcss.config.cjs -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/project.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/scripts/startLocalDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/scripts/startLocalDb.js -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/app.component.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/app.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/app.config.server.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/app.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/add-todo/add-todo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/add-todo/add-todo.component.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/add-todo/add-todo.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/add-todo/add-todo.component.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/add-todo/add-todo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/add-todo/add-todo.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/todo-item/todo-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/todo-item/todo-item.component.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/todo-item/todo-item.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/todo-item/todo-item.component.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/todo-item/todo-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/todo-item/todo-item.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/todo-list/todo-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/todo-list/todo-list.component.html -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/todo-list/todo-list.component.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/todo-list/todo-list.component.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/components/todo-list/todo-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/components/todo-list/todo-list.component.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/pages/(home).page.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/pages/(home).page.stories.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/pages/(home).page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/pages/(home).page.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/services/config.service.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/services/todos.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/services/todos.service.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/app/stories/todos.msw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/app/stories/todos.msw.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/favicon.ico -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/main.server.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/main.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/public/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/public/assets/analog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/public/assets/analog.svg -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/public/mockServiceWorker.js -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/db/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/db/mongo.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/middleware/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/middleware/cors.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/routes/v1/todos.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/routes/v1/todos.get.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/routes/v1/todos.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/routes/v1/todos.post.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/routes/v1/todos/[id].delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/routes/v1/todos/[id].delete.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/routes/v1/todos/[id].patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/routes/v1/todos/[id].patch.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/schemas/todo.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/schemas/todo.schema.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/server/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/server/utils/validation.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/styles.css -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/test-setup.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/src/vite-env.d.ts -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/tailwind.config.cjs -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/tsconfig.app.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/tsconfig.editor.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/tsconfig.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/tsconfig.spec.json -------------------------------------------------------------------------------- /templates/mantis-todo/apps/web-client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/apps/web-client/vite.config.ts -------------------------------------------------------------------------------- /templates/mantis-todo/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/nx.json -------------------------------------------------------------------------------- /templates/mantis-todo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/package.json -------------------------------------------------------------------------------- /templates/mantis-todo/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/pnpm-lock.yaml -------------------------------------------------------------------------------- /templates/mantis-todo/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/templates/mantis-todo/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantis-apps/mantis-cli/HEAD/tsconfig.json --------------------------------------------------------------------------------