├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── remote.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── apps ├── challenges-e2e │ ├── .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 ├── challenges │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ ├── challenges │ │ │ │ ├── challenge-details │ │ │ │ │ ├── challenge-details.component.html │ │ │ │ │ ├── challenge-details.component.scss │ │ │ │ │ ├── challenge-details.component.spec.ts │ │ │ │ │ └── challenge-details.component.ts │ │ │ │ ├── challenges-list │ │ │ │ │ ├── challenges-list.component.html │ │ │ │ │ ├── challenges-list.component.scss │ │ │ │ │ ├── challenges-list.component.spec.ts │ │ │ │ │ └── challenges-list.component.ts │ │ │ │ ├── challenges.component.html │ │ │ │ ├── challenges.component.scss │ │ │ │ ├── challenges.component.spec.ts │ │ │ │ └── challenges.component.ts │ │ │ └── remote-entry │ │ │ │ ├── entry.component.ts │ │ │ │ └── entry.routes.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── bootstrap.server.ts │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ ├── webpack.prod.config.ts │ └── webpack.server.config.ts ├── dashboard-e2e │ ├── .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 ├── dashboard │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ └── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── module-federation.manifest.json │ │ ├── bootstrap.server.ts │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ └── webpack.server.config.ts ├── flashcards-e2e │ ├── .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 ├── flashcards │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ ├── flashcards │ │ │ │ ├── flashcard-details │ │ │ │ │ ├── flashcard-details.component.html │ │ │ │ │ ├── flashcard-details.component.scss │ │ │ │ │ ├── flashcard-details.component.spec.ts │ │ │ │ │ └── flashcard-details.component.ts │ │ │ │ ├── flashcards-list │ │ │ │ │ ├── flashcards-list.component.html │ │ │ │ │ ├── flashcards-list.component.scss │ │ │ │ │ ├── flashcards-list.component.spec.ts │ │ │ │ │ └── flashcards-list.component.ts │ │ │ │ ├── flashcards.component.html │ │ │ │ ├── flashcards.component.scss │ │ │ │ ├── flashcards.component.spec.ts │ │ │ │ └── flashcards.component.ts │ │ │ └── remote-entry │ │ │ │ ├── entry.component.ts │ │ │ │ └── entry.routes.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── bootstrap.server.ts │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ ├── webpack.prod.config.ts │ └── webpack.server.config.ts ├── notes-e2e │ ├── .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 ├── notes │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ ├── notes │ │ │ │ ├── note-details │ │ │ │ │ ├── note-details.component.html │ │ │ │ │ ├── note-details.component.scss │ │ │ │ │ ├── note-details.component.spec.ts │ │ │ │ │ └── note-details.component.ts │ │ │ │ ├── notes-list │ │ │ │ │ ├── notes-list.component.html │ │ │ │ │ ├── notes-list.component.scss │ │ │ │ │ ├── notes-list.component.spec.ts │ │ │ │ │ └── notes-list.component.ts │ │ │ │ ├── notes.component.html │ │ │ │ ├── notes.component.scss │ │ │ │ ├── notes.component.spec.ts │ │ │ │ └── notes.component.ts │ │ │ └── remote-entry │ │ │ │ ├── entry.component.ts │ │ │ │ └── entry.routes.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── bootstrap.server.ts │ │ ├── bootstrap.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ ├── webpack.prod.config.ts │ └── webpack.server.config.ts ├── portal-e2e │ ├── .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 ├── portal │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── server.ts │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.ts │ │ │ └── features │ │ │ │ ├── feature-details │ │ │ │ ├── feature-details.component.html │ │ │ │ ├── feature-details.component.scss │ │ │ │ ├── feature-details.component.spec.ts │ │ │ │ └── feature-details.component.ts │ │ │ │ ├── features-list │ │ │ │ ├── features-list.component.html │ │ │ │ ├── features-list.component.scss │ │ │ │ ├── features-list.component.spec.ts │ │ │ │ └── features-list.component.ts │ │ │ │ ├── features.component.html │ │ │ │ ├── features.component.scss │ │ │ │ ├── features.component.spec.ts │ │ │ │ └── features.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── styles.scss │ │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── users-e2e │ ├── .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 └── users │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── module-federation.config.ts │ ├── project.json │ ├── server.ts │ ├── src │ ├── app │ │ ├── app.config.server.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── remote-entry │ │ │ ├── entry.component.ts │ │ │ └── entry.routes.ts │ │ └── users │ │ │ ├── user-details │ │ │ ├── user-details.component.html │ │ │ ├── user-details.component.scss │ │ │ ├── user-details.component.spec.ts │ │ │ └── user-details.component.ts │ │ │ ├── users-list │ │ │ ├── users-list.component.html │ │ │ ├── users-list.component.scss │ │ │ ├── users-list.component.spec.ts │ │ │ └── users-list.component.ts │ │ │ ├── users.component.html │ │ │ ├── users.component.scss │ │ │ ├── users.component.spec.ts │ │ │ └── users.component.ts │ ├── assets │ │ └── .gitkeep │ ├── bootstrap.server.ts │ ├── bootstrap.ts │ ├── favicon.ico │ ├── index.html │ ├── main.server.ts │ ├── main.ts │ ├── styles.scss │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ ├── webpack.config.ts │ ├── webpack.prod.config.ts │ └── webpack.server.config.ts ├── compose.yaml ├── databases ├── challenges.sqlite ├── features.sqlite ├── flashcards.sqlite ├── notes.sqlite └── users.sqlite ├── envoy.yaml ├── jest.config.ts ├── jest.preset.js ├── libs ├── api-interfaces │ ├── .eslintrc.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── api-interfaces.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── challenges-data │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── challenges-data.module.ts │ │ │ └── services │ │ │ │ ├── challenges.service.spec.ts │ │ │ │ └── challenges.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── challenges-local-state │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── challenges-local-state.module.ts │ │ │ └── state │ │ │ │ ├── challenges-local.facade.spec.ts │ │ │ │ └── challenges-local.facade.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── challenges-state │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── state │ │ │ │ ├── challenges.actions.ts │ │ │ │ ├── challenges.effects.spec.ts │ │ │ │ ├── challenges.effects.ts │ │ │ │ ├── challenges.facade.spec.ts │ │ │ │ ├── challenges.facade.ts │ │ │ │ ├── challenges.reducer.spec.ts │ │ │ │ ├── challenges.reducer.ts │ │ │ │ ├── challenges.selectors.spec.ts │ │ │ │ ├── challenges.selectors.ts │ │ │ │ └── state.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── features-data │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── features-data.module.ts │ │ │ └── services │ │ │ │ ├── features.service.spec.ts │ │ │ │ └── features.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── features-state │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── state │ │ │ │ ├── features.actions.ts │ │ │ │ ├── features.effects.spec.ts │ │ │ │ ├── features.effects.ts │ │ │ │ ├── features.facade.spec.ts │ │ │ │ ├── features.facade.ts │ │ │ │ ├── features.reducer.spec.ts │ │ │ │ ├── features.reducer.ts │ │ │ │ ├── features.selectors.spec.ts │ │ │ │ ├── features.selectors.ts │ │ │ │ └── state.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── flashcards-data │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── flashcards-data.module.ts │ │ │ └── services │ │ │ │ ├── flashcards.service.spec.ts │ │ │ │ └── flashcards.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── flashcards-state │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── state │ │ │ │ ├── flashcards.actions.ts │ │ │ │ ├── flashcards.effects.spec.ts │ │ │ │ ├── flashcards.effects.ts │ │ │ │ ├── flashcards.facade.spec.ts │ │ │ │ ├── flashcards.facade.ts │ │ │ │ ├── flashcards.reducer.spec.ts │ │ │ │ ├── flashcards.reducer.ts │ │ │ │ ├── flashcards.selectors.spec.ts │ │ │ │ ├── flashcards.selectors.ts │ │ │ │ └── state.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── guards │ └── remote-auth │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── guards-remote-auth.module.ts │ │ │ ├── jwt-auth.guard.spec.ts │ │ │ ├── jwt-auth.guard.ts │ │ │ ├── roles.decorator.ts │ │ │ ├── roles.guard.spec.ts │ │ │ └── roles.guard.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── material │ ├── .eslintrc.json │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── material.module.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── notes-data │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── notes-data.module.ts │ │ │ └── services │ │ │ │ ├── notes.service.spec.ts │ │ │ │ └── notes.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── notes-state │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── state │ │ │ │ ├── notes.actions.ts │ │ │ │ ├── notes.effects.spec.ts │ │ │ │ ├── notes.effects.ts │ │ │ │ ├── notes.facade.spec.ts │ │ │ │ ├── notes.facade.ts │ │ │ │ ├── notes.reducer.spec.ts │ │ │ │ ├── notes.reducer.ts │ │ │ │ ├── notes.selectors.spec.ts │ │ │ │ ├── notes.selectors.ts │ │ │ │ └── state.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── testing │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── challenges.mock.ts │ │ │ ├── features.mock.ts │ │ │ ├── flashcards.mock.ts │ │ │ ├── notes.mock.ts │ │ │ └── users.mock.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── ui-login │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── ui-login.module.ts │ │ │ └── ui-login │ │ │ │ ├── ui-login.component.html │ │ │ │ ├── ui-login.component.scss │ │ │ │ ├── ui-login.component.spec.ts │ │ │ │ └── ui-login.component.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── users-data │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── services │ │ │ │ ├── users.service.spec.ts │ │ │ │ └── users.service.ts │ │ │ └── users-data.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── users-state │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ └── state │ │ │ ├── state.ts │ │ │ ├── users.actions.ts │ │ │ ├── users.effects.spec.ts │ │ │ ├── users.effects.ts │ │ │ ├── users.facade.spec.ts │ │ │ ├── users.facade.ts │ │ │ ├── users.reducer.spec.ts │ │ │ ├── users.reducer.ts │ │ │ ├── users.selectors.spec.ts │ │ │ └── users.selectors.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── remote ├── Dockerfile ├── challenges-e2e │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── challenges-api │ │ │ └── challenges-api.spec.ts │ │ └── support │ │ │ ├── global-setup.ts │ │ │ ├── global-teardown.ts │ │ │ └── test-setup.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── challenges │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.module.ts │ │ │ ├── challenges │ │ │ │ ├── challenge.providers.ts │ │ │ │ ├── challenges.controller.spec.ts │ │ │ │ ├── challenges.controller.ts │ │ │ │ ├── challenges.module.ts │ │ │ │ ├── challenges.service.spec.ts │ │ │ │ ├── challenges.service.ts │ │ │ │ └── dto │ │ │ │ │ ├── create-challenge.dto.ts │ │ │ │ │ └── update-challenge.dto.ts │ │ │ └── database │ │ │ │ ├── database.module.ts │ │ │ │ ├── database.providers.ts │ │ │ │ ├── database.seeder.ts │ │ │ │ ├── entities │ │ │ │ └── challenge.entity.ts │ │ │ │ └── subscribers │ │ │ │ └── challenge.subscriber.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── features-e2e │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── features-api │ │ │ └── features-api.spec.ts │ │ └── support │ │ │ ├── global-setup.ts │ │ │ ├── global-teardown.ts │ │ │ └── test-setup.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── features │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.module.ts │ │ │ ├── database │ │ │ │ ├── database.module.ts │ │ │ │ ├── database.providers.ts │ │ │ │ ├── database.seeder.ts │ │ │ │ ├── entities │ │ │ │ │ └── feature.entity.ts │ │ │ │ └── subscribers │ │ │ │ │ └── feature.subscriber.ts │ │ │ └── features │ │ │ │ ├── feature.providers.ts │ │ │ │ ├── features.controller.spec.ts │ │ │ │ ├── features.controller.ts │ │ │ │ ├── features.module.ts │ │ │ │ ├── features.service.spec.ts │ │ │ │ └── features.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── flashcards-e2e │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── flashcards-api │ │ │ └── flashcards-api.spec.ts │ │ └── support │ │ │ ├── global-setup.ts │ │ │ ├── global-teardown.ts │ │ │ └── test-setup.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── flashcards │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.module.ts │ │ │ ├── database │ │ │ │ ├── database.module.ts │ │ │ │ ├── database.providers.ts │ │ │ │ ├── database.seeder.ts │ │ │ │ ├── entities │ │ │ │ │ └── flashcard.entity.ts │ │ │ │ └── subscribers │ │ │ │ │ └── flashcard.subscriber.ts │ │ │ └── flashcards │ │ │ │ ├── dto │ │ │ │ ├── create-flashcard.dto.ts │ │ │ │ └── update-flashcard.dto.ts │ │ │ │ ├── flashcard.providers.ts │ │ │ │ ├── flashcards.controller.spec.ts │ │ │ │ ├── flashcards.controller.ts │ │ │ │ ├── flashcards.module.ts │ │ │ │ ├── flashcards.service.spec.ts │ │ │ │ └── flashcards.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── notes-e2e │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── notes-api │ │ │ └── notes-api.spec.ts │ │ └── support │ │ │ ├── global-setup.ts │ │ │ ├── global-teardown.ts │ │ │ └── test-setup.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── notes │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.module.ts │ │ │ ├── database │ │ │ │ ├── database.module.ts │ │ │ │ ├── database.providers.ts │ │ │ │ ├── database.seeder.ts │ │ │ │ ├── entities │ │ │ │ │ └── note.entity.ts │ │ │ │ └── subscribers │ │ │ │ │ └── note.subscriber.ts │ │ │ └── notes │ │ │ │ ├── dto │ │ │ │ ├── create-note.dto.ts │ │ │ │ └── update-note.dto.ts │ │ │ │ ├── note.providers.ts │ │ │ │ ├── notes.controller.spec.ts │ │ │ │ ├── notes.controller.ts │ │ │ │ ├── notes.module.ts │ │ │ │ ├── notes.service.spec.ts │ │ │ │ └── notes.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── users-e2e │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── support │ │ │ ├── global-setup.ts │ │ │ ├── global-teardown.ts │ │ │ └── test-setup.ts │ │ └── users-api │ │ │ └── users-api.spec.ts │ ├── tsconfig.json │ └── tsconfig.spec.json └── users │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── app │ │ ├── app.module.ts │ │ ├── auth │ │ │ ├── auth.constants.ts │ │ │ ├── auth.module.ts │ │ │ ├── auth.service.spec.ts │ │ │ ├── auth.service.ts │ │ │ ├── guards │ │ │ │ ├── jwt-auth.guard.ts │ │ │ │ └── local-auth.guard.ts │ │ │ ├── role.decorator.ts │ │ │ └── strategies │ │ │ │ ├── jwt.strategy.ts │ │ │ │ └── local.strategy.ts │ │ ├── database │ │ │ ├── database.module.ts │ │ │ ├── database.providers.ts │ │ │ ├── database.seeder.ts │ │ │ ├── entities │ │ │ │ ├── company.entity.ts │ │ │ │ └── user.entity.ts │ │ │ └── subscribers │ │ │ │ └── user.subscriber.ts │ │ └── users │ │ │ ├── dto │ │ │ ├── create-user.dto.ts │ │ │ └── update-user.dto.ts │ │ │ ├── user.providers.ts │ │ │ ├── users.controller.spec.ts │ │ │ ├── users.controller.ts │ │ │ ├── users.module.ts │ │ │ ├── users.service.spec.ts │ │ │ └── users.service.ts │ ├── assets │ │ └── .gitkeep │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── server ├── challenges.json ├── features.json ├── flashcards.json ├── notes.json ├── routes.json ├── server.js └── users.json ├── snippets ├── 00-cli-commands.md ├── 01-master-detail-view.md └── 02-unit-testing.md ├── tooling ├── wizard-e2e │ ├── .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 └── wizard │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── common │ │ │ ├── api-interfaces.ts │ │ │ └── name-variations.generator.ts │ │ └── wizard │ │ │ ├── wizard.component.html │ │ │ ├── wizard.component.scss │ │ │ ├── wizard.component.spec.ts │ │ │ └── wizard.component.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── styles.scss │ └── test-setup.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/.github/workflows/remote.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/README.md -------------------------------------------------------------------------------- /apps/challenges-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/challenges-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/challenges-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/project.json -------------------------------------------------------------------------------- /apps/challenges-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/challenges-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/challenges-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/challenges-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/challenges-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/challenges-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/challenges/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/.eslintrc.json -------------------------------------------------------------------------------- /apps/challenges/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/jest.config.ts -------------------------------------------------------------------------------- /apps/challenges/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/module-federation.config.ts -------------------------------------------------------------------------------- /apps/challenges/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/project.json -------------------------------------------------------------------------------- /apps/challenges/server.ts: -------------------------------------------------------------------------------- 1 | import('./src/main.server'); 2 | -------------------------------------------------------------------------------- /apps/challenges/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenge-details/challenge-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenge-details/challenge-details.component.html -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenge-details/challenge-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenge-details/challenge-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenge-details/challenge-details.component.spec.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenge-details/challenge-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenge-details/challenge-details.component.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges-list/challenges-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenges-list/challenges-list.component.html -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges-list/challenges-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges-list/challenges-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenges-list/challenges-list.component.spec.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges-list/challenges-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenges-list/challenges-list.component.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenges.component.html -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenges.component.spec.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/challenges/challenges.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/challenges/challenges.component.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/remote-entry/entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/remote-entry/entry.component.ts -------------------------------------------------------------------------------- /apps/challenges/src/app/remote-entry/entry.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/app/remote-entry/entry.routes.ts -------------------------------------------------------------------------------- /apps/challenges/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/challenges/src/bootstrap.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/bootstrap.server.ts -------------------------------------------------------------------------------- /apps/challenges/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/challenges/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/favicon.ico -------------------------------------------------------------------------------- /apps/challenges/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/index.html -------------------------------------------------------------------------------- /apps/challenges/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/main.server.ts -------------------------------------------------------------------------------- /apps/challenges/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/main.ts -------------------------------------------------------------------------------- /apps/challenges/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/styles.scss -------------------------------------------------------------------------------- /apps/challenges/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/src/test-setup.ts -------------------------------------------------------------------------------- /apps/challenges/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/tailwind.config.js -------------------------------------------------------------------------------- /apps/challenges/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/tsconfig.app.json -------------------------------------------------------------------------------- /apps/challenges/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/challenges/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/tsconfig.json -------------------------------------------------------------------------------- /apps/challenges/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/tsconfig.server.json -------------------------------------------------------------------------------- /apps/challenges/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/challenges/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/webpack.config.ts -------------------------------------------------------------------------------- /apps/challenges/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/webpack.prod.config.ts -------------------------------------------------------------------------------- /apps/challenges/webpack.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/challenges/webpack.server.config.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/project.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/dashboard-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/.eslintrc.json -------------------------------------------------------------------------------- /apps/dashboard/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/jest.config.ts -------------------------------------------------------------------------------- /apps/dashboard/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/module-federation.config.ts -------------------------------------------------------------------------------- /apps/dashboard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/project.json -------------------------------------------------------------------------------- /apps/dashboard/server.ts: -------------------------------------------------------------------------------- 1 | import('./src/main.server'); 2 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/app.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/home/home.component.html -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /apps/dashboard/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/app/home/home.component.ts -------------------------------------------------------------------------------- /apps/dashboard/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/dashboard/src/assets/module-federation.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/assets/module-federation.manifest.json -------------------------------------------------------------------------------- /apps/dashboard/src/bootstrap.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/bootstrap.server.ts -------------------------------------------------------------------------------- /apps/dashboard/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/dashboard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/favicon.ico -------------------------------------------------------------------------------- /apps/dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/index.html -------------------------------------------------------------------------------- /apps/dashboard/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/main.server.ts -------------------------------------------------------------------------------- /apps/dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/main.ts -------------------------------------------------------------------------------- /apps/dashboard/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/styles.scss -------------------------------------------------------------------------------- /apps/dashboard/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/src/test-setup.ts -------------------------------------------------------------------------------- /apps/dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/tsconfig.app.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/tsconfig.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/tsconfig.server.json -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/dashboard/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/webpack.config.ts -------------------------------------------------------------------------------- /apps/dashboard/webpack.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/dashboard/webpack.server.config.ts -------------------------------------------------------------------------------- /apps/flashcards-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/flashcards-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/flashcards-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/project.json -------------------------------------------------------------------------------- /apps/flashcards-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/flashcards-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/flashcards-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/flashcards-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/flashcards-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/flashcards-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/flashcards/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/.eslintrc.json -------------------------------------------------------------------------------- /apps/flashcards/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/jest.config.ts -------------------------------------------------------------------------------- /apps/flashcards/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/module-federation.config.ts -------------------------------------------------------------------------------- /apps/flashcards/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/project.json -------------------------------------------------------------------------------- /apps/flashcards/server.ts: -------------------------------------------------------------------------------- 1 | import('./src/main.server'); 2 | -------------------------------------------------------------------------------- /apps/flashcards/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.html -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.spec.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcard-details/flashcard-details.component.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.html -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.spec.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcards-list/flashcards-list.component.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcards.component.html -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcards.component.spec.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/flashcards/flashcards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/flashcards/flashcards.component.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/remote-entry/entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/remote-entry/entry.component.ts -------------------------------------------------------------------------------- /apps/flashcards/src/app/remote-entry/entry.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/app/remote-entry/entry.routes.ts -------------------------------------------------------------------------------- /apps/flashcards/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flashcards/src/bootstrap.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/bootstrap.server.ts -------------------------------------------------------------------------------- /apps/flashcards/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/flashcards/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/favicon.ico -------------------------------------------------------------------------------- /apps/flashcards/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/index.html -------------------------------------------------------------------------------- /apps/flashcards/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/main.server.ts -------------------------------------------------------------------------------- /apps/flashcards/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/main.ts -------------------------------------------------------------------------------- /apps/flashcards/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/styles.scss -------------------------------------------------------------------------------- /apps/flashcards/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/src/test-setup.ts -------------------------------------------------------------------------------- /apps/flashcards/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/tailwind.config.js -------------------------------------------------------------------------------- /apps/flashcards/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/tsconfig.app.json -------------------------------------------------------------------------------- /apps/flashcards/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/flashcards/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/tsconfig.json -------------------------------------------------------------------------------- /apps/flashcards/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/tsconfig.server.json -------------------------------------------------------------------------------- /apps/flashcards/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/flashcards/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/webpack.config.ts -------------------------------------------------------------------------------- /apps/flashcards/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/webpack.prod.config.ts -------------------------------------------------------------------------------- /apps/flashcards/webpack.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/flashcards/webpack.server.config.ts -------------------------------------------------------------------------------- /apps/notes-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/notes-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/notes-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/project.json -------------------------------------------------------------------------------- /apps/notes-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/notes-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/notes-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/notes-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/notes-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/notes-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/notes/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/.eslintrc.json -------------------------------------------------------------------------------- /apps/notes/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/jest.config.ts -------------------------------------------------------------------------------- /apps/notes/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/module-federation.config.ts -------------------------------------------------------------------------------- /apps/notes/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/project.json -------------------------------------------------------------------------------- /apps/notes/server.ts: -------------------------------------------------------------------------------- 1 | import('./src/main.server'); 2 | -------------------------------------------------------------------------------- /apps/notes/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/notes/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/notes/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/notes/src/app/notes/note-details/note-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/note-details/note-details.component.html -------------------------------------------------------------------------------- /apps/notes/src/app/notes/note-details/note-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/notes/src/app/notes/note-details/note-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/note-details/note-details.component.spec.ts -------------------------------------------------------------------------------- /apps/notes/src/app/notes/note-details/note-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/note-details/note-details.component.ts -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes-list/notes-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/notes-list/notes-list.component.html -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes-list/notes-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes-list/notes-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/notes-list/notes-list.component.spec.ts -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes-list/notes-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/notes-list/notes-list.component.ts -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/notes.component.html -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/notes.component.spec.ts -------------------------------------------------------------------------------- /apps/notes/src/app/notes/notes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/notes/notes.component.ts -------------------------------------------------------------------------------- /apps/notes/src/app/remote-entry/entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/remote-entry/entry.component.ts -------------------------------------------------------------------------------- /apps/notes/src/app/remote-entry/entry.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/app/remote-entry/entry.routes.ts -------------------------------------------------------------------------------- /apps/notes/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/notes/src/bootstrap.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/bootstrap.server.ts -------------------------------------------------------------------------------- /apps/notes/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/notes/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/favicon.ico -------------------------------------------------------------------------------- /apps/notes/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/index.html -------------------------------------------------------------------------------- /apps/notes/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/main.server.ts -------------------------------------------------------------------------------- /apps/notes/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/main.ts -------------------------------------------------------------------------------- /apps/notes/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/styles.scss -------------------------------------------------------------------------------- /apps/notes/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/src/test-setup.ts -------------------------------------------------------------------------------- /apps/notes/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/tailwind.config.js -------------------------------------------------------------------------------- /apps/notes/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/tsconfig.app.json -------------------------------------------------------------------------------- /apps/notes/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/notes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/tsconfig.json -------------------------------------------------------------------------------- /apps/notes/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/tsconfig.server.json -------------------------------------------------------------------------------- /apps/notes/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/notes/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/webpack.config.ts -------------------------------------------------------------------------------- /apps/notes/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/webpack.prod.config.ts -------------------------------------------------------------------------------- /apps/notes/webpack.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/notes/webpack.server.config.ts -------------------------------------------------------------------------------- /apps/portal-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/portal-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/portal-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/project.json -------------------------------------------------------------------------------- /apps/portal-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/portal-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/portal-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/portal-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/portal-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/portal-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/portal/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/.eslintrc.json -------------------------------------------------------------------------------- /apps/portal/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/jest.config.ts -------------------------------------------------------------------------------- /apps/portal/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/project.json -------------------------------------------------------------------------------- /apps/portal/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/server.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/app.component.html -------------------------------------------------------------------------------- /apps/portal/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/portal/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/portal/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/portal/src/app/features/feature-details/feature-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/feature-details/feature-details.component.html -------------------------------------------------------------------------------- /apps/portal/src/app/features/feature-details/feature-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/portal/src/app/features/feature-details/feature-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/feature-details/feature-details.component.spec.ts -------------------------------------------------------------------------------- /apps/portal/src/app/features/feature-details/feature-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/feature-details/feature-details.component.ts -------------------------------------------------------------------------------- /apps/portal/src/app/features/features-list/features-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/features-list/features-list.component.html -------------------------------------------------------------------------------- /apps/portal/src/app/features/features-list/features-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/portal/src/app/features/features-list/features-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/features-list/features-list.component.spec.ts -------------------------------------------------------------------------------- /apps/portal/src/app/features/features-list/features-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/features-list/features-list.component.ts -------------------------------------------------------------------------------- /apps/portal/src/app/features/features.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/features.component.html -------------------------------------------------------------------------------- /apps/portal/src/app/features/features.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/portal/src/app/features/features.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/features.component.spec.ts -------------------------------------------------------------------------------- /apps/portal/src/app/features/features.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/app/features/features.component.ts -------------------------------------------------------------------------------- /apps/portal/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/portal/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/favicon.ico -------------------------------------------------------------------------------- /apps/portal/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/index.html -------------------------------------------------------------------------------- /apps/portal/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/main.server.ts -------------------------------------------------------------------------------- /apps/portal/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/main.ts -------------------------------------------------------------------------------- /apps/portal/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/styles.scss -------------------------------------------------------------------------------- /apps/portal/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/src/test-setup.ts -------------------------------------------------------------------------------- /apps/portal/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/tailwind.config.js -------------------------------------------------------------------------------- /apps/portal/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/tsconfig.app.json -------------------------------------------------------------------------------- /apps/portal/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/portal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/tsconfig.json -------------------------------------------------------------------------------- /apps/portal/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/portal/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/users-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/users-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/users-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/project.json -------------------------------------------------------------------------------- /apps/users-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /apps/users-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/users-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/users-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/users-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /apps/users-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/users/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/.eslintrc.json -------------------------------------------------------------------------------- /apps/users/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/jest.config.ts -------------------------------------------------------------------------------- /apps/users/module-federation.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/module-federation.config.ts -------------------------------------------------------------------------------- /apps/users/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/project.json -------------------------------------------------------------------------------- /apps/users/server.ts: -------------------------------------------------------------------------------- 1 | import('./src/main.server'); 2 | -------------------------------------------------------------------------------- /apps/users/src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/app.config.server.ts -------------------------------------------------------------------------------- /apps/users/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/users/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/users/src/app/remote-entry/entry.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/remote-entry/entry.component.ts -------------------------------------------------------------------------------- /apps/users/src/app/remote-entry/entry.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/remote-entry/entry.routes.ts -------------------------------------------------------------------------------- /apps/users/src/app/users/user-details/user-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/user-details/user-details.component.html -------------------------------------------------------------------------------- /apps/users/src/app/users/user-details/user-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/src/app/users/user-details/user-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/user-details/user-details.component.spec.ts -------------------------------------------------------------------------------- /apps/users/src/app/users/user-details/user-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/user-details/user-details.component.ts -------------------------------------------------------------------------------- /apps/users/src/app/users/users-list/users-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/users-list/users-list.component.html -------------------------------------------------------------------------------- /apps/users/src/app/users/users-list/users-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/src/app/users/users-list/users-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/users-list/users-list.component.spec.ts -------------------------------------------------------------------------------- /apps/users/src/app/users/users-list/users-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/users-list/users-list.component.ts -------------------------------------------------------------------------------- /apps/users/src/app/users/users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/users.component.html -------------------------------------------------------------------------------- /apps/users/src/app/users/users.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/src/app/users/users.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/users.component.spec.ts -------------------------------------------------------------------------------- /apps/users/src/app/users/users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/app/users/users.component.ts -------------------------------------------------------------------------------- /apps/users/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/src/bootstrap.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/bootstrap.server.ts -------------------------------------------------------------------------------- /apps/users/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/bootstrap.ts -------------------------------------------------------------------------------- /apps/users/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/favicon.ico -------------------------------------------------------------------------------- /apps/users/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/index.html -------------------------------------------------------------------------------- /apps/users/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/main.server.ts -------------------------------------------------------------------------------- /apps/users/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/main.ts -------------------------------------------------------------------------------- /apps/users/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/styles.scss -------------------------------------------------------------------------------- /apps/users/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/src/test-setup.ts -------------------------------------------------------------------------------- /apps/users/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/tailwind.config.js -------------------------------------------------------------------------------- /apps/users/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/tsconfig.app.json -------------------------------------------------------------------------------- /apps/users/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/users/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/tsconfig.json -------------------------------------------------------------------------------- /apps/users/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/tsconfig.server.json -------------------------------------------------------------------------------- /apps/users/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/users/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/webpack.config.ts -------------------------------------------------------------------------------- /apps/users/webpack.prod.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/webpack.prod.config.ts -------------------------------------------------------------------------------- /apps/users/webpack.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/apps/users/webpack.server.config.ts -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/compose.yaml -------------------------------------------------------------------------------- /databases/challenges.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/databases/challenges.sqlite -------------------------------------------------------------------------------- /databases/features.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/databases/features.sqlite -------------------------------------------------------------------------------- /databases/flashcards.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/databases/flashcards.sqlite -------------------------------------------------------------------------------- /databases/notes.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/databases/notes.sqlite -------------------------------------------------------------------------------- /databases/users.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/databases/users.sqlite -------------------------------------------------------------------------------- /envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/envoy.yaml -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/api-interfaces/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/api-interfaces/.eslintrc.json -------------------------------------------------------------------------------- /libs/api-interfaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/api-interfaces/package.json -------------------------------------------------------------------------------- /libs/api-interfaces/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/api-interfaces/project.json -------------------------------------------------------------------------------- /libs/api-interfaces/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/api-interfaces'; 2 | -------------------------------------------------------------------------------- /libs/api-interfaces/src/lib/api-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/api-interfaces/src/lib/api-interfaces.ts -------------------------------------------------------------------------------- /libs/api-interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/api-interfaces/tsconfig.json -------------------------------------------------------------------------------- /libs/api-interfaces/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/api-interfaces/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/challenges-data/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/.eslintrc.json -------------------------------------------------------------------------------- /libs/challenges-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/README.md -------------------------------------------------------------------------------- /libs/challenges-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/jest.config.ts -------------------------------------------------------------------------------- /libs/challenges-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/project.json -------------------------------------------------------------------------------- /libs/challenges-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/src/index.ts -------------------------------------------------------------------------------- /libs/challenges-data/src/lib/challenges-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/src/lib/challenges-data.module.ts -------------------------------------------------------------------------------- /libs/challenges-data/src/lib/services/challenges.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/src/lib/services/challenges.service.spec.ts -------------------------------------------------------------------------------- /libs/challenges-data/src/lib/services/challenges.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/src/lib/services/challenges.service.ts -------------------------------------------------------------------------------- /libs/challenges-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/challenges-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/tsconfig.json -------------------------------------------------------------------------------- /libs/challenges-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/challenges-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/challenges-local-state/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/.eslintrc.json -------------------------------------------------------------------------------- /libs/challenges-local-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/README.md -------------------------------------------------------------------------------- /libs/challenges-local-state/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/jest.config.ts -------------------------------------------------------------------------------- /libs/challenges-local-state/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/project.json -------------------------------------------------------------------------------- /libs/challenges-local-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/src/index.ts -------------------------------------------------------------------------------- /libs/challenges-local-state/src/lib/challenges-local-state.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/src/lib/challenges-local-state.module.ts -------------------------------------------------------------------------------- /libs/challenges-local-state/src/lib/state/challenges-local.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/src/lib/state/challenges-local.facade.spec.ts -------------------------------------------------------------------------------- /libs/challenges-local-state/src/lib/state/challenges-local.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/src/lib/state/challenges-local.facade.ts -------------------------------------------------------------------------------- /libs/challenges-local-state/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/src/test-setup.ts -------------------------------------------------------------------------------- /libs/challenges-local-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/tsconfig.json -------------------------------------------------------------------------------- /libs/challenges-local-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/challenges-local-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-local-state/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/challenges-state/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/.eslintrc.json -------------------------------------------------------------------------------- /libs/challenges-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/README.md -------------------------------------------------------------------------------- /libs/challenges-state/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/jest.config.ts -------------------------------------------------------------------------------- /libs/challenges-state/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/project.json -------------------------------------------------------------------------------- /libs/challenges-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/index.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.actions.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.effects.spec.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.effects.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.facade.spec.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.facade.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.reducer.spec.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.reducer.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.selectors.spec.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/challenges.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/challenges.selectors.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/lib/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/lib/state/state.ts -------------------------------------------------------------------------------- /libs/challenges-state/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/src/test-setup.ts -------------------------------------------------------------------------------- /libs/challenges-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/tsconfig.json -------------------------------------------------------------------------------- /libs/challenges-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/challenges-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/challenges-state/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features-data/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/.eslintrc.json -------------------------------------------------------------------------------- /libs/features-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/README.md -------------------------------------------------------------------------------- /libs/features-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/jest.config.ts -------------------------------------------------------------------------------- /libs/features-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/project.json -------------------------------------------------------------------------------- /libs/features-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/src/index.ts -------------------------------------------------------------------------------- /libs/features-data/src/lib/features-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/src/lib/features-data.module.ts -------------------------------------------------------------------------------- /libs/features-data/src/lib/services/features.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/src/lib/services/features.service.spec.ts -------------------------------------------------------------------------------- /libs/features-data/src/lib/services/features.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/src/lib/services/features.service.ts -------------------------------------------------------------------------------- /libs/features-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/features-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/tsconfig.json -------------------------------------------------------------------------------- /libs/features-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/features-state/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/.eslintrc.json -------------------------------------------------------------------------------- /libs/features-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/README.md -------------------------------------------------------------------------------- /libs/features-state/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/jest.config.ts -------------------------------------------------------------------------------- /libs/features-state/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/project.json -------------------------------------------------------------------------------- /libs/features-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/index.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.actions.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.effects.spec.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.effects.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.facade.spec.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.facade.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.reducer.spec.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.reducer.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.selectors.spec.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/features.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/features.selectors.ts -------------------------------------------------------------------------------- /libs/features-state/src/lib/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/lib/state/state.ts -------------------------------------------------------------------------------- /libs/features-state/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/src/test-setup.ts -------------------------------------------------------------------------------- /libs/features-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/tsconfig.json -------------------------------------------------------------------------------- /libs/features-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/features-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/features-state/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/flashcards-data/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/.eslintrc.json -------------------------------------------------------------------------------- /libs/flashcards-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/README.md -------------------------------------------------------------------------------- /libs/flashcards-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/jest.config.ts -------------------------------------------------------------------------------- /libs/flashcards-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/project.json -------------------------------------------------------------------------------- /libs/flashcards-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/src/index.ts -------------------------------------------------------------------------------- /libs/flashcards-data/src/lib/flashcards-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/src/lib/flashcards-data.module.ts -------------------------------------------------------------------------------- /libs/flashcards-data/src/lib/services/flashcards.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/src/lib/services/flashcards.service.spec.ts -------------------------------------------------------------------------------- /libs/flashcards-data/src/lib/services/flashcards.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/src/lib/services/flashcards.service.ts -------------------------------------------------------------------------------- /libs/flashcards-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/flashcards-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/tsconfig.json -------------------------------------------------------------------------------- /libs/flashcards-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/flashcards-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/flashcards-state/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/.eslintrc.json -------------------------------------------------------------------------------- /libs/flashcards-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/README.md -------------------------------------------------------------------------------- /libs/flashcards-state/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/jest.config.ts -------------------------------------------------------------------------------- /libs/flashcards-state/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/project.json -------------------------------------------------------------------------------- /libs/flashcards-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/index.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.actions.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.effects.spec.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.effects.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.facade.spec.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.facade.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.reducer.spec.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.reducer.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.selectors.spec.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/flashcards.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/flashcards.selectors.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/lib/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/lib/state/state.ts -------------------------------------------------------------------------------- /libs/flashcards-state/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/src/test-setup.ts -------------------------------------------------------------------------------- /libs/flashcards-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/tsconfig.json -------------------------------------------------------------------------------- /libs/flashcards-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/flashcards-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/flashcards-state/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/guards/remote-auth/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/.eslintrc.json -------------------------------------------------------------------------------- /libs/guards/remote-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/README.md -------------------------------------------------------------------------------- /libs/guards/remote-auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/jest.config.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/project.json -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/index.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/lib/guards-remote-auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/lib/guards-remote-auth.module.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/lib/jwt-auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/lib/jwt-auth.guard.spec.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/lib/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/lib/jwt-auth.guard.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/lib/roles.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/lib/roles.decorator.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/lib/roles.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/lib/roles.guard.spec.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/src/lib/roles.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/src/lib/roles.guard.ts -------------------------------------------------------------------------------- /libs/guards/remote-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/tsconfig.json -------------------------------------------------------------------------------- /libs/guards/remote-auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/guards/remote-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/guards/remote-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/material/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/material/.eslintrc.json -------------------------------------------------------------------------------- /libs/material/README.md: -------------------------------------------------------------------------------- 1 | # material 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/material/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/material/project.json -------------------------------------------------------------------------------- /libs/material/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/material.module'; 2 | -------------------------------------------------------------------------------- /libs/material/src/lib/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/material/src/lib/material.module.ts -------------------------------------------------------------------------------- /libs/material/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/material/tsconfig.json -------------------------------------------------------------------------------- /libs/material/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/material/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/notes-data/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/.eslintrc.json -------------------------------------------------------------------------------- /libs/notes-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/README.md -------------------------------------------------------------------------------- /libs/notes-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/jest.config.ts -------------------------------------------------------------------------------- /libs/notes-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/project.json -------------------------------------------------------------------------------- /libs/notes-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/src/index.ts -------------------------------------------------------------------------------- /libs/notes-data/src/lib/notes-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/src/lib/notes-data.module.ts -------------------------------------------------------------------------------- /libs/notes-data/src/lib/services/notes.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/src/lib/services/notes.service.spec.ts -------------------------------------------------------------------------------- /libs/notes-data/src/lib/services/notes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/src/lib/services/notes.service.ts -------------------------------------------------------------------------------- /libs/notes-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/notes-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/tsconfig.json -------------------------------------------------------------------------------- /libs/notes-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/notes-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/notes-state/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/.eslintrc.json -------------------------------------------------------------------------------- /libs/notes-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/README.md -------------------------------------------------------------------------------- /libs/notes-state/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/jest.config.ts -------------------------------------------------------------------------------- /libs/notes-state/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/project.json -------------------------------------------------------------------------------- /libs/notes-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/index.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.actions.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.effects.spec.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.effects.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.facade.spec.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.facade.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.reducer.spec.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.reducer.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.selectors.spec.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/notes.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/notes.selectors.ts -------------------------------------------------------------------------------- /libs/notes-state/src/lib/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/lib/state/state.ts -------------------------------------------------------------------------------- /libs/notes-state/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/src/test-setup.ts -------------------------------------------------------------------------------- /libs/notes-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/tsconfig.json -------------------------------------------------------------------------------- /libs/notes-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/notes-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/notes-state/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/testing/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/.eslintrc.json -------------------------------------------------------------------------------- /libs/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/README.md -------------------------------------------------------------------------------- /libs/testing/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/jest.config.ts -------------------------------------------------------------------------------- /libs/testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/package.json -------------------------------------------------------------------------------- /libs/testing/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/project.json -------------------------------------------------------------------------------- /libs/testing/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/src/index.ts -------------------------------------------------------------------------------- /libs/testing/src/lib/challenges.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/src/lib/challenges.mock.ts -------------------------------------------------------------------------------- /libs/testing/src/lib/features.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/src/lib/features.mock.ts -------------------------------------------------------------------------------- /libs/testing/src/lib/flashcards.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/src/lib/flashcards.mock.ts -------------------------------------------------------------------------------- /libs/testing/src/lib/notes.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/src/lib/notes.mock.ts -------------------------------------------------------------------------------- /libs/testing/src/lib/users.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/src/lib/users.mock.ts -------------------------------------------------------------------------------- /libs/testing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/tsconfig.json -------------------------------------------------------------------------------- /libs/testing/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/testing/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/testing/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ui-login/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/.eslintrc.json -------------------------------------------------------------------------------- /libs/ui-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/README.md -------------------------------------------------------------------------------- /libs/ui-login/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/jest.config.ts -------------------------------------------------------------------------------- /libs/ui-login/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/project.json -------------------------------------------------------------------------------- /libs/ui-login/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/index.ts -------------------------------------------------------------------------------- /libs/ui-login/src/lib/ui-login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/lib/ui-login.module.ts -------------------------------------------------------------------------------- /libs/ui-login/src/lib/ui-login/ui-login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/lib/ui-login/ui-login.component.html -------------------------------------------------------------------------------- /libs/ui-login/src/lib/ui-login/ui-login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/lib/ui-login/ui-login.component.scss -------------------------------------------------------------------------------- /libs/ui-login/src/lib/ui-login/ui-login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/lib/ui-login/ui-login.component.spec.ts -------------------------------------------------------------------------------- /libs/ui-login/src/lib/ui-login/ui-login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/lib/ui-login/ui-login.component.ts -------------------------------------------------------------------------------- /libs/ui-login/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/src/test-setup.ts -------------------------------------------------------------------------------- /libs/ui-login/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/tsconfig.json -------------------------------------------------------------------------------- /libs/ui-login/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ui-login/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/ui-login/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/users-data/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/.eslintrc.json -------------------------------------------------------------------------------- /libs/users-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/README.md -------------------------------------------------------------------------------- /libs/users-data/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/jest.config.ts -------------------------------------------------------------------------------- /libs/users-data/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/project.json -------------------------------------------------------------------------------- /libs/users-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/src/index.ts -------------------------------------------------------------------------------- /libs/users-data/src/lib/services/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/src/lib/services/users.service.spec.ts -------------------------------------------------------------------------------- /libs/users-data/src/lib/services/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/src/lib/services/users.service.ts -------------------------------------------------------------------------------- /libs/users-data/src/lib/users-data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/src/lib/users-data.module.ts -------------------------------------------------------------------------------- /libs/users-data/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/src/test-setup.ts -------------------------------------------------------------------------------- /libs/users-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/tsconfig.json -------------------------------------------------------------------------------- /libs/users-data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/users-data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/users-state/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/.eslintrc.json -------------------------------------------------------------------------------- /libs/users-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/README.md -------------------------------------------------------------------------------- /libs/users-state/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/jest.config.ts -------------------------------------------------------------------------------- /libs/users-state/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/project.json -------------------------------------------------------------------------------- /libs/users-state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/index.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/state.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.actions.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.effects.spec.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.effects.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.facade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.facade.spec.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.facade.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.reducer.spec.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.reducer.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.selectors.spec.ts -------------------------------------------------------------------------------- /libs/users-state/src/lib/state/users.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/lib/state/users.selectors.ts -------------------------------------------------------------------------------- /libs/users-state/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/src/test-setup.ts -------------------------------------------------------------------------------- /libs/users-state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/tsconfig.json -------------------------------------------------------------------------------- /libs/users-state/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/users-state/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/libs/users-state/tsconfig.spec.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/package.json -------------------------------------------------------------------------------- /remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/Dockerfile -------------------------------------------------------------------------------- /remote/challenges-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/.eslintrc.json -------------------------------------------------------------------------------- /remote/challenges-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/jest.config.ts -------------------------------------------------------------------------------- /remote/challenges-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/project.json -------------------------------------------------------------------------------- /remote/challenges-e2e/src/challenges-api/challenges-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/src/challenges-api/challenges-api.spec.ts -------------------------------------------------------------------------------- /remote/challenges-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /remote/challenges-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /remote/challenges-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /remote/challenges-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/tsconfig.json -------------------------------------------------------------------------------- /remote/challenges-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/challenges/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/.eslintrc.json -------------------------------------------------------------------------------- /remote/challenges/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/jest.config.ts -------------------------------------------------------------------------------- /remote/challenges/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/project.json -------------------------------------------------------------------------------- /remote/challenges/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/app.module.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/challenge.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/challenge.providers.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/challenges.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/challenges.controller.spec.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/challenges.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/challenges.controller.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/challenges.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/challenges.module.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/challenges.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/challenges.service.spec.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/challenges.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/challenges.service.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/dto/create-challenge.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateChallengeDto {} 2 | -------------------------------------------------------------------------------- /remote/challenges/src/app/challenges/dto/update-challenge.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/challenges/dto/update-challenge.dto.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/database/database.module.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/database/database.providers.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/database/database.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/database/database.seeder.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/database/entities/challenge.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/database/entities/challenge.entity.ts -------------------------------------------------------------------------------- /remote/challenges/src/app/database/subscribers/challenge.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/app/database/subscribers/challenge.subscriber.ts -------------------------------------------------------------------------------- /remote/challenges/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remote/challenges/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/src/main.ts -------------------------------------------------------------------------------- /remote/challenges/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/tsconfig.app.json -------------------------------------------------------------------------------- /remote/challenges/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/tsconfig.json -------------------------------------------------------------------------------- /remote/challenges/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/challenges/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/challenges/webpack.config.js -------------------------------------------------------------------------------- /remote/features-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/.eslintrc.json -------------------------------------------------------------------------------- /remote/features-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/jest.config.ts -------------------------------------------------------------------------------- /remote/features-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/project.json -------------------------------------------------------------------------------- /remote/features-e2e/src/features-api/features-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/src/features-api/features-api.spec.ts -------------------------------------------------------------------------------- /remote/features-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /remote/features-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /remote/features-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /remote/features-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/tsconfig.json -------------------------------------------------------------------------------- /remote/features-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/features/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/.eslintrc.json -------------------------------------------------------------------------------- /remote/features/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/jest.config.ts -------------------------------------------------------------------------------- /remote/features/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/project.json -------------------------------------------------------------------------------- /remote/features/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/app.module.ts -------------------------------------------------------------------------------- /remote/features/src/app/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/database/database.module.ts -------------------------------------------------------------------------------- /remote/features/src/app/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/database/database.providers.ts -------------------------------------------------------------------------------- /remote/features/src/app/database/database.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/database/database.seeder.ts -------------------------------------------------------------------------------- /remote/features/src/app/database/entities/feature.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/database/entities/feature.entity.ts -------------------------------------------------------------------------------- /remote/features/src/app/database/subscribers/feature.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/database/subscribers/feature.subscriber.ts -------------------------------------------------------------------------------- /remote/features/src/app/features/feature.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/features/feature.providers.ts -------------------------------------------------------------------------------- /remote/features/src/app/features/features.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/features/features.controller.spec.ts -------------------------------------------------------------------------------- /remote/features/src/app/features/features.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/features/features.controller.ts -------------------------------------------------------------------------------- /remote/features/src/app/features/features.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/features/features.module.ts -------------------------------------------------------------------------------- /remote/features/src/app/features/features.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/features/features.service.spec.ts -------------------------------------------------------------------------------- /remote/features/src/app/features/features.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/app/features/features.service.ts -------------------------------------------------------------------------------- /remote/features/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remote/features/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/src/main.ts -------------------------------------------------------------------------------- /remote/features/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/tsconfig.app.json -------------------------------------------------------------------------------- /remote/features/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/tsconfig.json -------------------------------------------------------------------------------- /remote/features/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/features/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/features/webpack.config.js -------------------------------------------------------------------------------- /remote/flashcards-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/.eslintrc.json -------------------------------------------------------------------------------- /remote/flashcards-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/jest.config.ts -------------------------------------------------------------------------------- /remote/flashcards-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/project.json -------------------------------------------------------------------------------- /remote/flashcards-e2e/src/flashcards-api/flashcards-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/src/flashcards-api/flashcards-api.spec.ts -------------------------------------------------------------------------------- /remote/flashcards-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /remote/flashcards-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /remote/flashcards-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /remote/flashcards-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/tsconfig.json -------------------------------------------------------------------------------- /remote/flashcards-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/flashcards/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/.eslintrc.json -------------------------------------------------------------------------------- /remote/flashcards/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/jest.config.ts -------------------------------------------------------------------------------- /remote/flashcards/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/project.json -------------------------------------------------------------------------------- /remote/flashcards/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/app.module.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/database/database.module.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/database/database.providers.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/database/database.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/database/database.seeder.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/database/entities/flashcard.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/database/entities/flashcard.entity.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/database/subscribers/flashcard.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/database/subscribers/flashcard.subscriber.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/dto/create-flashcard.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateFlashcardDto {} 2 | -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/dto/update-flashcard.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/dto/update-flashcard.dto.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/flashcard.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/flashcard.providers.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/flashcards.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/flashcards.controller.spec.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/flashcards.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/flashcards.controller.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/flashcards.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/flashcards.module.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/flashcards.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/flashcards.service.spec.ts -------------------------------------------------------------------------------- /remote/flashcards/src/app/flashcards/flashcards.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/app/flashcards/flashcards.service.ts -------------------------------------------------------------------------------- /remote/flashcards/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remote/flashcards/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/src/main.ts -------------------------------------------------------------------------------- /remote/flashcards/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/tsconfig.app.json -------------------------------------------------------------------------------- /remote/flashcards/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/tsconfig.json -------------------------------------------------------------------------------- /remote/flashcards/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/flashcards/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/flashcards/webpack.config.js -------------------------------------------------------------------------------- /remote/notes-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/.eslintrc.json -------------------------------------------------------------------------------- /remote/notes-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/jest.config.ts -------------------------------------------------------------------------------- /remote/notes-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/project.json -------------------------------------------------------------------------------- /remote/notes-e2e/src/notes-api/notes-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/src/notes-api/notes-api.spec.ts -------------------------------------------------------------------------------- /remote/notes-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /remote/notes-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /remote/notes-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /remote/notes-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/tsconfig.json -------------------------------------------------------------------------------- /remote/notes-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/notes/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/.eslintrc.json -------------------------------------------------------------------------------- /remote/notes/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/jest.config.ts -------------------------------------------------------------------------------- /remote/notes/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/project.json -------------------------------------------------------------------------------- /remote/notes/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/app.module.ts -------------------------------------------------------------------------------- /remote/notes/src/app/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/database/database.module.ts -------------------------------------------------------------------------------- /remote/notes/src/app/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/database/database.providers.ts -------------------------------------------------------------------------------- /remote/notes/src/app/database/database.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/database/database.seeder.ts -------------------------------------------------------------------------------- /remote/notes/src/app/database/entities/note.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/database/entities/note.entity.ts -------------------------------------------------------------------------------- /remote/notes/src/app/database/subscribers/note.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/database/subscribers/note.subscriber.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/dto/create-note.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateNoteDto {} 2 | -------------------------------------------------------------------------------- /remote/notes/src/app/notes/dto/update-note.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/dto/update-note.dto.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/note.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/note.providers.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/notes.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/notes.controller.spec.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/notes.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/notes.controller.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/notes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/notes.module.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/notes.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/notes.service.spec.ts -------------------------------------------------------------------------------- /remote/notes/src/app/notes/notes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/app/notes/notes.service.ts -------------------------------------------------------------------------------- /remote/notes/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remote/notes/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/src/main.ts -------------------------------------------------------------------------------- /remote/notes/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/tsconfig.app.json -------------------------------------------------------------------------------- /remote/notes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/tsconfig.json -------------------------------------------------------------------------------- /remote/notes/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/notes/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/notes/webpack.config.js -------------------------------------------------------------------------------- /remote/users-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/.eslintrc.json -------------------------------------------------------------------------------- /remote/users-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/jest.config.ts -------------------------------------------------------------------------------- /remote/users-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/project.json -------------------------------------------------------------------------------- /remote/users-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /remote/users-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /remote/users-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /remote/users-e2e/src/users-api/users-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/src/users-api/users-api.spec.ts -------------------------------------------------------------------------------- /remote/users-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/tsconfig.json -------------------------------------------------------------------------------- /remote/users-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/users/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/.eslintrc.json -------------------------------------------------------------------------------- /remote/users/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/jest.config.ts -------------------------------------------------------------------------------- /remote/users/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/project.json -------------------------------------------------------------------------------- /remote/users/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/app.module.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/auth.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/auth.constants.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/auth.service.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/role.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/role.decorator.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /remote/users/src/app/auth/strategies/local.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/auth/strategies/local.strategy.ts -------------------------------------------------------------------------------- /remote/users/src/app/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/database/database.module.ts -------------------------------------------------------------------------------- /remote/users/src/app/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/database/database.providers.ts -------------------------------------------------------------------------------- /remote/users/src/app/database/database.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/database/database.seeder.ts -------------------------------------------------------------------------------- /remote/users/src/app/database/entities/company.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/database/entities/company.entity.ts -------------------------------------------------------------------------------- /remote/users/src/app/database/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/database/entities/user.entity.ts -------------------------------------------------------------------------------- /remote/users/src/app/database/subscribers/user.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/database/subscribers/user.subscriber.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/dto/create-user.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateUserDto {} 2 | -------------------------------------------------------------------------------- /remote/users/src/app/users/dto/update-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/dto/update-user.dto.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/user.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/user.providers.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/users.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/users.controller.spec.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/users.controller.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/users.module.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/users.service.spec.ts -------------------------------------------------------------------------------- /remote/users/src/app/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/app/users/users.service.ts -------------------------------------------------------------------------------- /remote/users/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remote/users/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/src/main.ts -------------------------------------------------------------------------------- /remote/users/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/tsconfig.app.json -------------------------------------------------------------------------------- /remote/users/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/tsconfig.json -------------------------------------------------------------------------------- /remote/users/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/tsconfig.spec.json -------------------------------------------------------------------------------- /remote/users/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/remote/users/webpack.config.js -------------------------------------------------------------------------------- /server/challenges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/server/challenges.json -------------------------------------------------------------------------------- /server/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/server/features.json -------------------------------------------------------------------------------- /server/flashcards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/server/flashcards.json -------------------------------------------------------------------------------- /server/notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/server/notes.json -------------------------------------------------------------------------------- /server/routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api/*": "/$1" 3 | } 4 | -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/server/server.js -------------------------------------------------------------------------------- /server/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/server/users.json -------------------------------------------------------------------------------- /snippets/00-cli-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/snippets/00-cli-commands.md -------------------------------------------------------------------------------- /snippets/01-master-detail-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/snippets/01-master-detail-view.md -------------------------------------------------------------------------------- /snippets/02-unit-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/snippets/02-unit-testing.md -------------------------------------------------------------------------------- /tooling/wizard-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/.eslintrc.json -------------------------------------------------------------------------------- /tooling/wizard-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/cypress.config.ts -------------------------------------------------------------------------------- /tooling/wizard-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/project.json -------------------------------------------------------------------------------- /tooling/wizard-e2e/src/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/src/e2e/app.cy.ts -------------------------------------------------------------------------------- /tooling/wizard-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /tooling/wizard-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/src/support/app.po.ts -------------------------------------------------------------------------------- /tooling/wizard-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /tooling/wizard-e2e/src/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/src/support/e2e.ts -------------------------------------------------------------------------------- /tooling/wizard-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard-e2e/tsconfig.json -------------------------------------------------------------------------------- /tooling/wizard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/.eslintrc.json -------------------------------------------------------------------------------- /tooling/wizard/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/jest.config.ts -------------------------------------------------------------------------------- /tooling/wizard/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/project.json -------------------------------------------------------------------------------- /tooling/wizard/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/app.component.html -------------------------------------------------------------------------------- /tooling/wizard/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tooling/wizard/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/app.component.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/app.config.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/app.routes.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/common/api-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/common/api-interfaces.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/common/name-variations.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/common/name-variations.generator.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/wizard/wizard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/wizard/wizard.component.html -------------------------------------------------------------------------------- /tooling/wizard/src/app/wizard/wizard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tooling/wizard/src/app/wizard/wizard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/wizard/wizard.component.spec.ts -------------------------------------------------------------------------------- /tooling/wizard/src/app/wizard/wizard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/app/wizard/wizard.component.ts -------------------------------------------------------------------------------- /tooling/wizard/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tooling/wizard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/favicon.ico -------------------------------------------------------------------------------- /tooling/wizard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/index.html -------------------------------------------------------------------------------- /tooling/wizard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/main.ts -------------------------------------------------------------------------------- /tooling/wizard/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/styles.scss -------------------------------------------------------------------------------- /tooling/wizard/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/src/test-setup.ts -------------------------------------------------------------------------------- /tooling/wizard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/tailwind.config.js -------------------------------------------------------------------------------- /tooling/wizard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/tsconfig.app.json -------------------------------------------------------------------------------- /tooling/wizard/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/tsconfig.editor.json -------------------------------------------------------------------------------- /tooling/wizard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/tsconfig.json -------------------------------------------------------------------------------- /tooling/wizard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tooling/wizard/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onehungrymind/enterprisey-apps/HEAD/tsconfig.base.json --------------------------------------------------------------------------------