├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── manual-cloud-test.yml │ ├── pr-cra.yml │ ├── pr-dev.yml │ ├── pr-release.yml │ ├── push-dev.yml │ ├── push-master.yml │ └── resolve-gate.yml ├── .github_changelog_generator ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── doc.code-snippets └── settings.json ├── CHANGELOG.md ├── HISTORY.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── _config.yml ├── benchmarks ├── .eslintrc.js ├── .gitignore ├── README.md ├── eventstore │ ├── event-spec.example.json │ ├── import-eventstore.ts │ ├── load-events.ts │ ├── parallel-save.ts │ ├── save-event.ts │ └── utils.ts ├── package.json └── tsconfig.json ├── docs ├── Contributing.md ├── README.md ├── _config.yml ├── adapters.md ├── api-handlers.md ├── api │ ├── aggregate │ │ ├── command-handler.md │ │ └── projection.md │ ├── api-handler │ │ ├── api-handler.md │ │ └── resolve-context.md │ ├── client │ │ ├── entry-point.md │ │ ├── http-api.md │ │ ├── request-middleware.md │ │ ├── resolve-client.md │ │ ├── resolve-react-hooks.md │ │ └── resolve-redux.md │ ├── command.md │ ├── encryption │ │ ├── factory-function.md │ │ └── secrets-manager.md │ ├── event-store-adapter.md │ ├── event.md │ ├── middleware.md │ ├── monitoring │ │ ├── metric.md │ │ ├── monitoring-adapter.md │ │ └── monitoring.md │ ├── read-model │ │ ├── connector.md │ │ ├── projection.md │ │ ├── query.md │ │ ├── resolver.md │ │ └── store.md │ ├── resolve-scripts.md │ ├── saga.md │ └── view-model │ │ ├── projection.md │ │ ├── query.md │ │ └── resolver.md ├── application-configuration.md ├── assets │ ├── getting-started-new-app.png │ ├── resolve-cloud-architecture-diagram.png │ └── tutorial │ │ ├── lesson3-result.png │ │ ├── lesson4-list-items.png │ │ ├── lesson4-navigation.png │ │ ├── lesson5-check-item.png │ │ ├── lesson5-delete.png │ │ └── lesson5-list-creator.png ├── authentication-and-authorization.md ├── code-splitting.md ├── custom-read-model-connectors.md ├── debugging.md ├── encryption.md ├── export-import.md ├── faq.md ├── file-upload.md ├── frontend.md ├── getting-started-chart │ ├── _index.mdx │ ├── components │ │ ├── Adapter.js │ │ ├── Aggregates.js │ │ ├── ApiHandlers.js │ │ ├── Arrows.js │ │ ├── Chart.js │ │ ├── Client.js │ │ ├── DataBase.js │ │ ├── ReadModels.js │ │ ├── ReadSide.js │ │ ├── Sagas.js │ │ ├── Server.js │ │ ├── ViewModels.js │ │ └── WriteSide.js │ ├── pages │ │ ├── _aggregates.mdx │ │ ├── _api-handlers.mdx │ │ ├── _client.mdx │ │ ├── _es-adapter.mdx │ │ ├── _read-models.mdx │ │ ├── _read-side.mdx │ │ ├── _sagas.mdx │ │ ├── _server.mdx │ │ ├── _view-models.mdx │ │ └── _write-side.mdx │ └── static │ │ └── styles.css ├── getting-started.md ├── introduction.md ├── manage-application.md ├── middleware.md ├── modules.md ├── monitoring.md ├── preparing-for-production.md ├── read-side.md ├── resolve-app-structure.md ├── running-in-containers.md ├── sagas.md ├── testing.md ├── troubleshooting.md ├── tutorial.md ├── typescript-support.md └── write-side.md ├── examples ├── README.md ├── js │ ├── hacker-news │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── README.md │ │ ├── auth │ │ │ ├── create-strategy.js │ │ │ ├── jwt-secret.js │ │ │ ├── route-login-callback.js │ │ │ └── route-register-callback.js │ │ ├── client │ │ │ ├── action-types.js │ │ │ ├── actions │ │ │ │ └── optimistic-actions.js │ │ │ ├── components │ │ │ │ ├── AuthForm.js │ │ │ │ ├── ChildComments.js │ │ │ │ ├── Comment.js │ │ │ │ ├── CommentsNotification.js │ │ │ │ ├── Error.js │ │ │ │ ├── Login.js │ │ │ │ ├── PageNotFound.js │ │ │ │ ├── Pagination.js │ │ │ │ ├── ReplyLink.js │ │ │ │ ├── SearchResultItem.js │ │ │ │ ├── Splitter.js │ │ │ │ ├── Stories.js │ │ │ │ └── TimeAgo.js │ │ │ ├── constants.js │ │ │ ├── containers │ │ │ │ ├── App.js │ │ │ │ ├── AskByPage.js │ │ │ │ ├── CommentsByPage.js │ │ │ │ ├── CommentsTreeById.js │ │ │ │ ├── ConnectedComments.js │ │ │ │ ├── ConnectedStory.js │ │ │ │ ├── Form.js │ │ │ │ ├── Header.js │ │ │ │ ├── LoginInfo.js │ │ │ │ ├── NewestByPage.js │ │ │ │ ├── Search.js │ │ │ │ ├── SearchResults.js │ │ │ │ ├── ShowByPage.js │ │ │ │ ├── StaticImage.js │ │ │ │ ├── Story.js │ │ │ │ ├── StoryById.js │ │ │ │ ├── Submit.js │ │ │ │ └── UserById.js │ │ │ ├── enhancers │ │ │ │ └── redux-devtools.js │ │ │ ├── get-redux.js │ │ │ ├── get-routes.js │ │ │ ├── index.js │ │ │ ├── reducers │ │ │ │ └── optimistic.js │ │ │ ├── sagas │ │ │ │ ├── optimistic-voting-saga.js │ │ │ │ └── story-create-saga.js │ │ │ ├── ssr.js │ │ │ └── types.js │ │ ├── common │ │ │ ├── aggregates │ │ │ │ ├── story.commands.js │ │ │ │ ├── story.projection.js │ │ │ │ ├── user.commands.js │ │ │ │ ├── user.projection.js │ │ │ │ └── validation.js │ │ │ ├── event-types.js │ │ │ ├── read-models │ │ │ │ ├── elastic-search-connector.js │ │ │ │ ├── empty.js │ │ │ │ ├── hacker-news.projection.js │ │ │ │ ├── hacker-news.resolvers.js │ │ │ │ ├── search.projection.js │ │ │ │ └── search.resolvers.js │ │ │ └── sagas │ │ │ │ └── user-confirmation.saga.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.common.js │ │ ├── config.cloud.js │ │ ├── config.cloud.replica.js │ │ ├── config.dev.common.js │ │ ├── config.dev.js │ │ ├── config.dev.replica.js │ │ ├── config.docker.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data-replica │ │ │ └── .gitignore │ │ ├── data │ │ │ └── .gitignore │ │ ├── import │ │ │ ├── api.js │ │ │ ├── import-api-handler.js │ │ │ ├── import-secret-api-handler.js │ │ │ ├── importer.js │ │ │ └── index.js │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run-e2e-docker.js │ │ ├── run.js │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── reSolve-logo.svg │ │ │ └── style.css │ │ └── test │ │ │ ├── e2e-docker │ │ │ └── check-application.js │ │ │ ├── e2e-post-import │ │ │ └── check-import.js │ │ │ ├── e2e │ │ │ ├── 1.user.js │ │ │ ├── 2.story.js │ │ │ ├── 3.comments.js │ │ │ └── utils.js │ │ │ └── unit │ │ │ ├── aggregates │ │ │ ├── story.test.js │ │ │ ├── user.test.js │ │ │ └── validation.test.js │ │ │ ├── jest-setup.js │ │ │ └── sagas │ │ │ ├── optimistic-voting-saga.test.js │ │ │ └── story-create-saga.test.js │ ├── personal-data │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── auth │ │ │ ├── create-strategy.js │ │ │ ├── jwt-secret.js │ │ │ ├── route-login-callback.js │ │ │ └── route-register-callback.js │ │ ├── client │ │ │ ├── components │ │ │ │ ├── App.js │ │ │ │ ├── Feed.js │ │ │ │ ├── FeedByAuthor.js │ │ │ │ ├── Header.js │ │ │ │ ├── Home.js │ │ │ │ ├── ImageUpload.js │ │ │ │ ├── Loading.js │ │ │ │ ├── Login.js │ │ │ │ ├── Post.js │ │ │ │ ├── PostForm.js │ │ │ │ ├── Profile.js │ │ │ │ ├── ProfileWithViewModel.js │ │ │ │ ├── UserBlog.js │ │ │ │ └── Users.js │ │ │ ├── context.js │ │ │ ├── index.js │ │ │ ├── routes.js │ │ │ └── userContext.js │ │ ├── common │ │ │ ├── aggregates │ │ │ │ ├── blog-post.commands.js │ │ │ │ ├── blog-post.projection.js │ │ │ │ ├── encryption.js │ │ │ │ ├── media.commands.js │ │ │ │ ├── media.projection.js │ │ │ │ ├── user-profile.commands.js │ │ │ │ └── user-profile.projection.js │ │ │ ├── api-handlers │ │ │ │ ├── delete-personal-key.js │ │ │ │ └── get-personal-key.js │ │ │ ├── blog-post.events.js │ │ │ ├── constants.js │ │ │ ├── encryption-factory.js │ │ │ ├── errors.js │ │ │ ├── jwt.js │ │ │ ├── media.events.js │ │ │ ├── middlewares │ │ │ │ ├── auth-command-middleware.js │ │ │ │ └── auth-resolver-middleware.js │ │ │ ├── read-models │ │ │ │ ├── blog-posts.projection.js │ │ │ │ ├── blog-posts.resolvers.js │ │ │ │ ├── encryption.js │ │ │ │ ├── medias.projection.js │ │ │ │ ├── medias.resolvers.js │ │ │ │ ├── user-profiles.projection.js │ │ │ │ └── user-profiles.resolvers.js │ │ │ ├── sagas │ │ │ │ └── personal-data.saga.js │ │ │ ├── user-profile.events.js │ │ │ └── view-models │ │ │ │ ├── current-user-profile.projection.js │ │ │ │ └── current-user-profile.resolver.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── loading.gif │ │ │ └── resolve-logo.png │ │ └── test │ │ │ └── e2e │ │ │ └── index.test.js │ ├── shopping-list-redux-hoc │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ │ ├── actions │ │ │ │ ├── aggregate_actions.js │ │ │ │ └── optimistic_actions.js │ │ │ ├── components │ │ │ │ ├── NotFound.js │ │ │ │ ├── ShoppingListCreator.js │ │ │ │ └── ShoppingLists.js │ │ │ ├── containers │ │ │ │ ├── App.js │ │ │ │ ├── Form.js │ │ │ │ ├── Header.js │ │ │ │ ├── MyLists.js │ │ │ │ ├── ShoppingList.js │ │ │ │ └── StaticImage.js │ │ │ ├── enhancers │ │ │ │ └── redux-devtools.js │ │ │ ├── get-redux.js │ │ │ ├── get-routes.js │ │ │ ├── index.js │ │ │ ├── reducers │ │ │ │ └── optimistic_shopping_lists.js │ │ │ ├── sagas │ │ │ │ └── optimistic_shopping_lists_saga.js │ │ │ └── ssr.js │ │ ├── common │ │ │ ├── aggregates │ │ │ │ ├── shopping-list.commands.js │ │ │ │ └── shopping-list.projection.js │ │ │ ├── api-handlers │ │ │ │ └── shopping-lists.js │ │ │ ├── event-types.js │ │ │ ├── read-models │ │ │ │ ├── shopping-lists.projection.js │ │ │ │ └── shopping-lists.resolvers.js │ │ │ └── view-models │ │ │ │ └── shopping-list.projection.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── bootstrap.min.css │ │ │ ├── close-button.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── fb-logo.png │ │ │ ├── fontawesome.min.css │ │ │ ├── github-logo.png │ │ │ ├── left-arrow-button.png │ │ │ ├── logout.svg │ │ │ ├── resolve-logo.png │ │ │ ├── style.css │ │ │ ├── twitter-logo.png │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ └── test │ │ │ ├── e2e │ │ │ └── index.test.js │ │ │ └── unit │ │ │ ├── aggregates.test.js │ │ │ ├── read-models.test.js │ │ │ └── view-models.test.js │ ├── shopping-list-redux │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ │ ├── actions │ │ │ │ ├── aggregate-actions.js │ │ │ │ └── optimistic-actions.js │ │ │ ├── components │ │ │ │ ├── App.js │ │ │ │ ├── Header.js │ │ │ │ ├── MyLists.js │ │ │ │ ├── NotFound.js │ │ │ │ ├── ShoppingList.js │ │ │ │ ├── ShoppingListCreator.js │ │ │ │ ├── ShoppingListItem.js │ │ │ │ ├── ShoppingLists.js │ │ │ │ └── StaticImage.js │ │ │ ├── enhancers │ │ │ │ └── redux-devtools.js │ │ │ ├── get-redux.js │ │ │ ├── get-routes.js │ │ │ ├── index.js │ │ │ ├── reducers │ │ │ │ └── optimistic-shopping-lists.js │ │ │ └── ssr.js │ │ ├── common │ │ │ ├── aggregates │ │ │ │ ├── shopping-list.commands.js │ │ │ │ └── shopping-list.projection.js │ │ │ ├── api-handlers │ │ │ │ └── shopping-lists.js │ │ │ ├── event-types.js │ │ │ ├── read-models │ │ │ │ ├── shopping-lists.projection.js │ │ │ │ └── shopping-lists.resolvers.js │ │ │ └── view-models │ │ │ │ └── shopping-list.projection.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── bootstrap.min.css │ │ │ ├── close-button.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── fb-logo.png │ │ │ ├── fontawesome.min.css │ │ │ ├── github-logo.png │ │ │ ├── left-arrow-button.png │ │ │ ├── logout.svg │ │ │ ├── resolve-logo.png │ │ │ ├── style.css │ │ │ ├── twitter-logo.png │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ └── test │ │ │ ├── functional │ │ │ └── index.test.js │ │ │ └── unit │ │ │ ├── aggregates.test.js │ │ │ ├── read-models.test.js │ │ │ └── view-models.test.js │ └── shopping-list │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ ├── components │ │ │ ├── App.js │ │ │ ├── Header.js │ │ │ ├── MyLists.js │ │ │ ├── NotFound.js │ │ │ ├── ShoppingList.js │ │ │ ├── ShoppingListCreator.js │ │ │ ├── ShoppingListItem.js │ │ │ ├── ShoppingListRemover.js │ │ │ ├── ShoppingLists.js │ │ │ └── StaticImage.js │ │ ├── index.js │ │ └── routes.js │ │ ├── common │ │ ├── aggregates │ │ │ ├── shopping-list.commands.js │ │ │ └── shopping-list.projection.js │ │ ├── api-handlers │ │ │ └── shopping-lists.js │ │ ├── event-types.js │ │ ├── read-models │ │ │ ├── shopping-lists.projection.js │ │ │ └── shopping-lists.resolvers.js │ │ └── view-models │ │ │ └── shopping-list.projection.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ └── .gitignore │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ ├── bootstrap.min.css │ │ ├── close-button.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── fontawesome.min.css │ │ ├── github-logo.png │ │ ├── left-arrow-button.png │ │ ├── logout.svg │ │ ├── resolve-logo.png │ │ ├── style.css │ │ ├── twitter-logo.png │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ └── test │ │ ├── functional │ │ └── index.test.js │ │ └── unit │ │ ├── aggregates.test.js │ │ ├── read-models.test.js │ │ └── view-models.test.js └── ts │ ├── hacker-news │ ├── .babelrc │ ├── .gitignore │ ├── .prettierignore │ ├── .testcaferc.json │ ├── Dockerfile │ ├── README.md │ ├── auth │ │ ├── create-strategy.ts │ │ ├── jwt-secret.ts │ │ ├── route-login-callback.ts │ │ └── route-register-callback.ts │ ├── client │ │ ├── action-types.ts │ │ ├── actions │ │ │ └── optimistic-actions.ts │ │ ├── components │ │ │ ├── AuthForm.tsx │ │ │ ├── ChildComments.tsx │ │ │ ├── Comment.tsx │ │ │ ├── CommentsNotification.tsx │ │ │ ├── Error.tsx │ │ │ ├── Login.tsx │ │ │ ├── PageNotFound.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── ReplyLink.tsx │ │ │ ├── SearchResultItem.tsx │ │ │ ├── Splitter.ts │ │ │ ├── Stories.tsx │ │ │ └── TimeAgo.tsx │ │ ├── constants.ts │ │ ├── containers │ │ │ ├── App.tsx │ │ │ ├── AskByPage.tsx │ │ │ ├── CommentsByPage.tsx │ │ │ ├── CommentsTreeById.tsx │ │ │ ├── ConnectedComments.tsx │ │ │ ├── ConnectedStory.tsx │ │ │ ├── Form.tsx │ │ │ ├── Header.tsx │ │ │ ├── LoginInfo.tsx │ │ │ ├── NewestByPage.tsx │ │ │ ├── Search.tsx │ │ │ ├── SearchResults.tsx │ │ │ ├── ShowByPage.tsx │ │ │ ├── StaticImage.tsx │ │ │ ├── Story.tsx │ │ │ ├── StoryById.tsx │ │ │ ├── Submit.tsx │ │ │ └── UserById.tsx │ │ ├── enhancers │ │ │ └── redux-devtools.ts │ │ ├── get-redux.ts │ │ ├── get-routes.ts │ │ ├── index.tsx │ │ ├── reducers │ │ │ └── optimistic.ts │ │ ├── sagas │ │ │ ├── optimistic-voting-saga.ts │ │ │ └── story-create-saga.ts │ │ ├── ssr.tsx │ │ └── types.ts │ ├── common │ │ ├── aggregates │ │ │ ├── story.commands.ts │ │ │ ├── story.projection.ts │ │ │ ├── user.commands.ts │ │ │ ├── user.projection.ts │ │ │ └── validation.ts │ │ ├── event-types.ts │ │ ├── read-models │ │ │ ├── elastic-search-connector.ts │ │ │ ├── empty.ts │ │ │ ├── hacker-news.projection.ts │ │ │ ├── hacker-news.resolvers.ts │ │ │ ├── search.projection.ts │ │ │ └── search.resolvers.ts │ │ └── sagas │ │ │ └── user-confirmation.saga.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.common.ts │ ├── config.cloud.replica.ts │ ├── config.cloud.ts │ ├── config.dev.common.ts │ ├── config.dev.replica.ts │ ├── config.dev.ts │ ├── config.docker.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data-replica │ │ └── .gitignore │ ├── data │ │ └── .gitignore │ ├── docker-compose-production.yml │ ├── docker-compose.yml │ ├── docker │ │ └── volumes │ │ │ ├── nginx │ │ │ └── conf.d │ │ │ │ └── default.conf │ │ │ └── postgres │ │ │ └── docker-entrypoint-initdb.d │ │ │ └── init-schemas.sql │ ├── import │ │ ├── api.ts │ │ ├── import-api-handler.ts │ │ ├── import-secret-api-handler.ts │ │ ├── importer.ts │ │ └── index.ts │ ├── jest.config.ts │ ├── package.json │ ├── run-e2e-docker.ts │ ├── run.ts │ ├── static │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── reSolve-logo.svg │ │ └── style.css │ ├── test │ │ ├── e2e-docker │ │ │ ├── check-application.ts │ │ │ └── tsconfig.json │ │ ├── e2e-post-import │ │ │ ├── check-import.ts │ │ │ └── tsconfig.json │ │ ├── e2e │ │ │ ├── 1.user.ts │ │ │ ├── 2.story.ts │ │ │ ├── 3.comments.ts │ │ │ ├── tsconfig.json │ │ │ └── utils.ts │ │ └── unit │ │ │ ├── aggregates │ │ │ ├── story.test.ts │ │ │ ├── user.test.ts │ │ │ └── validation.test.ts │ │ │ ├── jest-setup.ts │ │ │ └── sagas │ │ │ ├── optimistic-voting-saga.test.ts │ │ │ └── story-create-saga.test.ts │ ├── tsconfig.json │ └── types.ts │ ├── personal-data │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── auth │ │ ├── create-strategy.ts │ │ ├── jwt-secret.ts │ │ ├── route-login-callback.ts │ │ └── route-register-callback.ts │ ├── client │ │ ├── components │ │ │ ├── App.tsx │ │ │ ├── Feed.tsx │ │ │ ├── FeedByAuthor.tsx │ │ │ ├── Header.tsx │ │ │ ├── Home.tsx │ │ │ ├── ImageUpload.tsx │ │ │ ├── Loading.tsx │ │ │ ├── Login.tsx │ │ │ ├── Post.tsx │ │ │ ├── PostForm.tsx │ │ │ ├── Profile.tsx │ │ │ ├── ProfileWithViewModel.tsx │ │ │ ├── UserBlog.tsx │ │ │ └── Users.tsx │ │ ├── context.ts │ │ ├── index.tsx │ │ ├── routes.ts │ │ └── userContext.ts │ ├── common │ │ ├── aggregates │ │ │ ├── blog-post.commands.ts │ │ │ ├── blog-post.projection.ts │ │ │ ├── encryption.ts │ │ │ ├── media.commands.ts │ │ │ ├── media.projection.ts │ │ │ ├── user-profile.commands.ts │ │ │ └── user-profile.projection.ts │ │ ├── api-handlers │ │ │ ├── delete-personal-key.ts │ │ │ └── get-personal-key.ts │ │ ├── blog-post.events.ts │ │ ├── constants.ts │ │ ├── encryption-factory.ts │ │ ├── errors.ts │ │ ├── jwt.ts │ │ ├── media.events.ts │ │ ├── middlewares │ │ │ ├── auth-command-middleware.ts │ │ │ └── auth-resolver-middleware.ts │ │ ├── read-models │ │ │ ├── blog-posts.projection.ts │ │ │ ├── blog-posts.resolvers.ts │ │ │ ├── encryption.ts │ │ │ ├── medias.projection.ts │ │ │ ├── medias.resolvers.ts │ │ │ ├── user-profiles.projection.ts │ │ │ └── user-profiles.resolvers.ts │ │ ├── sagas │ │ │ └── personal-data.saga.ts │ │ ├── user-profile.events.ts │ │ └── view-models │ │ │ ├── current-user-profile.projection.ts │ │ │ └── current-user-profile.resolver.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── loading.gif │ │ └── resolve-logo.png │ ├── test │ │ └── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── types.ts │ └── typings.d.ts │ ├── shopping-list-redux-hoc │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── actions │ │ │ ├── aggregate_actions.ts │ │ │ └── optimistic_actions.ts │ │ ├── components │ │ │ ├── NotFound.tsx │ │ │ ├── ShoppingListCreator.tsx │ │ │ └── ShoppingLists.tsx │ │ ├── containers │ │ │ ├── App.tsx │ │ │ ├── Form.tsx │ │ │ ├── Header.tsx │ │ │ ├── MyLists.tsx │ │ │ ├── ShoppingList.tsx │ │ │ └── StaticImage.tsx │ │ ├── enhancers │ │ │ └── redux-devtools.ts │ │ ├── get-redux.ts │ │ ├── get-routes.ts │ │ ├── index.tsx │ │ ├── reducers │ │ │ └── optimistic_shopping_lists.ts │ │ ├── sagas │ │ │ └── optimistic_shopping_lists_saga.ts │ │ └── ssr.tsx │ ├── common │ │ ├── aggregates │ │ │ ├── shopping-list.commands.ts │ │ │ └── shopping-list.projection.ts │ │ ├── api-handlers │ │ │ └── shopping-lists.ts │ │ ├── event-types.ts │ │ ├── read-models │ │ │ ├── shopping-lists.projection.ts │ │ │ └── shopping-lists.resolvers.ts │ │ └── view-models │ │ │ └── shopping-list.projection.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── jest.config.ts │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── bootstrap.min.css │ │ ├── close-button.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── fontawesome.min.css │ │ ├── github-logo.png │ │ ├── left-arrow-button.png │ │ ├── logout.svg │ │ ├── resolve-logo.png │ │ ├── style.css │ │ ├── twitter-logo.png │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── test │ │ ├── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ │ └── unit │ │ │ ├── aggregates.test.ts │ │ │ ├── read-models.test.ts │ │ │ └── view-models.test.ts │ ├── tsconfig.json │ └── types.ts │ ├── shopping-list-redux │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── actions │ │ │ ├── aggregate-actions.ts │ │ │ └── optimistic-actions.ts │ │ ├── components │ │ │ ├── App.tsx │ │ │ ├── Header.tsx │ │ │ ├── MyLists.tsx │ │ │ ├── NotFound.tsx │ │ │ ├── ShoppingList.tsx │ │ │ ├── ShoppingListCreator.tsx │ │ │ ├── ShoppingListItem.tsx │ │ │ ├── ShoppingLists.tsx │ │ │ └── StaticImage.tsx │ │ ├── enhancers │ │ │ └── redux-devtools.ts │ │ ├── get-redux.ts │ │ ├── get-routes.ts │ │ ├── index.tsx │ │ ├── reducers │ │ │ └── optimistic-shopping-lists.ts │ │ └── ssr.tsx │ ├── common │ │ ├── aggregates │ │ │ ├── shopping-list.commands.ts │ │ │ └── shopping-list.projection.ts │ │ ├── api-handlers │ │ │ └── shopping-lists.ts │ │ ├── event-types.ts │ │ ├── read-models │ │ │ ├── shopping-lists.projection.ts │ │ │ └── shopping-lists.resolvers.ts │ │ └── view-models │ │ │ └── shopping-list.projection.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── jest.config.ts │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── bootstrap.min.css │ │ ├── close-button.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── fontawesome.min.css │ │ ├── github-logo.png │ │ ├── left-arrow-button.png │ │ ├── logout.svg │ │ ├── resolve-logo.png │ │ ├── style.css │ │ ├── twitter-logo.png │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── test │ │ ├── functional │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ │ └── unit │ │ │ ├── aggregates.test.ts │ │ │ ├── read-models.test.ts │ │ │ └── view-models.test.ts │ ├── tsconfig.json │ └── types.ts │ └── shopping-list │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ ├── components │ │ ├── App.tsx │ │ ├── Header.tsx │ │ ├── MyLists.tsx │ │ ├── NotFound.tsx │ │ ├── ShoppingList.tsx │ │ ├── ShoppingListCreator.tsx │ │ ├── ShoppingListItem.tsx │ │ ├── ShoppingListRemover.tsx │ │ ├── ShoppingLists.tsx │ │ └── StaticImage.tsx │ ├── index.tsx │ └── routes.ts │ ├── common │ ├── aggregates │ │ ├── shopping-list.commands.ts │ │ └── shopping-list.projection.ts │ ├── api-handlers │ │ └── shopping-lists.ts │ ├── event-types.ts │ ├── read-models │ │ ├── shopping-lists.projection.ts │ │ └── shopping-lists.resolvers.ts │ └── view-models │ │ └── shopping-list.projection.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ └── .gitignore │ ├── jest.config.ts │ ├── package.json │ ├── run.ts │ ├── static │ ├── bootstrap.min.css │ ├── close-button.png │ ├── favicon.ico │ ├── favicon.png │ ├── fb-logo.png │ ├── fontawesome.min.css │ ├── github-logo.png │ ├── left-arrow-button.png │ ├── logout.svg │ ├── resolve-logo.png │ ├── style.css │ ├── twitter-logo.png │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── test │ ├── functional │ │ ├── index.test.ts │ │ └── tsconfig.json │ └── unit │ │ ├── aggregates.test.ts │ │ ├── read-models.test.ts │ │ └── view-models.test.ts │ ├── tsconfig.json │ └── types.ts ├── functional-tests ├── .gitignore ├── api │ ├── benchmark.test.ts │ ├── custom-server-code.test.ts │ ├── monitoring.test.ts │ ├── resolve-client │ │ ├── basic.test.ts │ │ ├── encryption.test.ts │ │ └── view-model.test.ts │ ├── saga.test.ts │ └── scheduler.test.ts ├── app │ ├── .babelrc │ ├── .gitignore │ ├── auth │ │ ├── create-strategy.js │ │ ├── jwt-secret.js │ │ ├── route-login-callback.js │ │ └── route-register-callback.js │ ├── client │ │ ├── hoc │ │ │ ├── components │ │ │ │ └── Routes.js │ │ │ ├── containers │ │ │ │ ├── App.js │ │ │ │ ├── Header.js │ │ │ │ ├── Index.js │ │ │ │ ├── OneViewModelMountedTwice.js │ │ │ │ ├── Users.js │ │ │ │ └── ViewModelsolation.js │ │ │ ├── enhancers │ │ │ │ └── redux-devtools.js │ │ │ ├── get-redux.js │ │ │ └── routes.js │ │ ├── hooks │ │ │ ├── components │ │ │ │ ├── App.js │ │ │ │ ├── Counter.js │ │ │ │ ├── FileUploader.js │ │ │ │ ├── Routes.js │ │ │ │ ├── SecretsManager.js │ │ │ │ └── UseRequestMiddleware.js │ │ │ ├── context.js │ │ │ └── routes.js │ │ ├── index-hoc.js │ │ ├── index-redux-hooks.js │ │ ├── index.js │ │ ├── redux-hooks │ │ │ ├── components │ │ │ │ ├── App.js │ │ │ │ ├── ArrayWithinQueryString.js │ │ │ │ ├── CustomAggregateIds.js │ │ │ │ ├── Header.js │ │ │ │ ├── Index.js │ │ │ │ ├── NamedSelectors.js │ │ │ │ ├── Routes.js │ │ │ │ └── ViewModel.js │ │ │ ├── custom-actions.js │ │ │ ├── enhancers │ │ │ │ └── redux-devtools.js │ │ │ ├── get-redux.js │ │ │ ├── reducers │ │ │ │ └── custom-counter.js │ │ │ └── routes.js │ │ ├── ssr-hoc.js │ │ └── ssr-redux-hooks.js │ ├── common │ │ ├── aggregates │ │ │ ├── counter.commands.js │ │ │ ├── encryption.js │ │ │ ├── monitoring.commands.js │ │ │ ├── saga-test.commands.js │ │ │ ├── saga-test.projection.js │ │ │ ├── scheduler-test.commands.js │ │ │ ├── scheduler-test.projection.js │ │ │ ├── test-scenario.commands.js │ │ │ ├── test-scenario.projection.js │ │ │ ├── user.commands.js │ │ │ └── user.projection.js │ │ ├── api-handlers │ │ │ ├── benchmark-event-generator.js │ │ │ ├── benchmark-pause-read-models.js │ │ │ ├── benchmark-resume-read-models.js │ │ │ ├── exec-custom-server-code.js │ │ │ ├── fail-api.js │ │ │ └── health-check.js │ │ ├── constants.js │ │ ├── custom-server-code.js │ │ ├── encryption-factory.js │ │ ├── event-types.js │ │ ├── read-models │ │ │ ├── benchmark-base.js │ │ │ ├── benchmark-heavy.projection.js │ │ │ ├── benchmark-heavy.resolvers.js │ │ │ ├── benchmark-lite.projection.js │ │ │ ├── benchmark-lite.resolvers.js │ │ │ ├── encryption.js │ │ │ ├── init-failed.projection.js │ │ │ ├── init-failed.resolvers.js │ │ │ ├── monitoring.projection.js │ │ │ ├── monitoring.resolvers.js │ │ │ ├── personal-data.projection.js │ │ │ ├── personal-data.resolvers.js │ │ │ ├── saga-scheduler-tests.projection.js │ │ │ ├── saga-scheduler-tests.resolvers.js │ │ │ ├── saga-tests.projection.js │ │ │ ├── saga-tests.resolvers.js │ │ │ ├── test-scenarios.projection.js │ │ │ ├── test-scenarios.resolvers.js │ │ │ ├── users.projection.js │ │ │ └── users.resolvers.js │ │ ├── sagas │ │ │ ├── saga-test-saga.js │ │ │ └── saga-test-scheduler.js │ │ └── view-models │ │ │ ├── counter.projection.js │ │ │ ├── cumulative-likes.projection.js │ │ │ ├── custom-aggregate-ids.projection.js │ │ │ ├── custom-aggregate-ids.resolver.js │ │ │ ├── custom-serializer.deserialize.js │ │ │ ├── custom-serializer.projection.js │ │ │ ├── custom-serializer.serialize.js │ │ │ ├── init-failed.projection.js │ │ │ ├── monitoring.projection.js │ │ │ ├── resolver-failed.projection.js │ │ │ ├── resolver-failed.resolver.js │ │ │ ├── test-scenario.projection.js │ │ │ ├── test-scenario.resolver.js │ │ │ ├── user.projection.js │ │ │ └── user.resolver.js │ ├── config.app.js │ ├── config.cloud.js │ ├── config.dev.js │ ├── config.prod.js │ ├── config.test_functional.js │ ├── data │ │ └── .gitignore │ ├── jest.config.js │ ├── package.json │ ├── run.js │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── github-logo.png │ │ ├── resolve-logo.png │ │ └── twitter-logo.png │ └── webpack.config.js ├── jest.config-api.js ├── jest.transform.js ├── package.json ├── scripts │ └── run.ts ├── testcafe │ ├── hoc │ │ ├── hoc.test.ts │ │ └── view-model-isolation.test.ts │ ├── react-hooks │ │ ├── counter.test.ts │ │ ├── file-uploader.test.ts │ │ ├── middleware.test.ts │ │ └── secrets-manager.test.ts │ └── redux-hooks │ │ ├── array-within-query-string.test.ts │ │ ├── custom-aggregate-ids.test.ts │ │ ├── named-selectors.test.ts │ │ └── view-model-basic.test.ts ├── tsconfig.json ├── typings │ └── testcafe-browser-tools.d.ts └── utils │ ├── constants.ts │ ├── generateEvents.ts │ ├── test-file.png │ └── utils.ts ├── internal ├── babel-compile │ ├── bin │ │ ├── index.js │ │ └── prepare.js │ └── package.json ├── build-packages │ ├── bin │ │ └── index.js │ └── package.json ├── cra-test │ ├── bin │ │ └── index.js │ └── package.json ├── helpers │ ├── create-profiler.js │ ├── get-babel-config.js │ ├── get-compile-configs.js │ ├── get-local-registry-config.js │ ├── get-repo-root.js │ ├── get-resolve-dir.js │ ├── get-resolve-examples.js │ ├── get-resolve-packages.js │ ├── index.js │ ├── package.json │ ├── patch-package-json.js │ ├── prepare-build-registry.js │ └── safe-name.js ├── local-registry │ ├── bin │ │ └── index.js │ └── package.json ├── root-yarn │ ├── bin │ │ └── index.js │ └── package.json ├── use-local-registry │ ├── README.md │ ├── bin │ │ └── index.js │ └── package.json └── workspaces │ ├── bin │ └── index.js │ └── package.json ├── jest.config.js ├── jest.transform.js ├── package.json ├── packages ├── README.md ├── core │ ├── README.md │ ├── client │ │ ├── .gitignore │ │ ├── README.md │ │ ├── jest.func-config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── assertions.ts │ │ │ ├── client.ts │ │ │ ├── context.ts │ │ │ ├── determine-origin.ts │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ ├── jwt-provider.ts │ │ │ ├── middleware.ts │ │ │ ├── middleware │ │ │ │ ├── parse-response.ts │ │ │ │ ├── retry-on-error.ts │ │ │ │ └── wait-for-response.ts │ │ │ ├── request.ts │ │ │ ├── subscribe-adapter-constants.ts │ │ │ ├── subscribe-adapter.ts │ │ │ ├── subscribe-callback.ts │ │ │ ├── subscribe.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── test │ │ │ ├── func │ │ │ │ ├── client.func.test.ts │ │ │ │ └── refresh-token-middleware.ts │ │ │ └── unit │ │ │ │ ├── client.unit.test.ts │ │ │ │ ├── determine-origin.unit.test.ts │ │ │ │ ├── middleware.unit.test.ts │ │ │ │ ├── request.unit.test.ts │ │ │ │ ├── subscribe-callback.unit.test.ts │ │ │ │ ├── subscribe.unit.test.ts │ │ │ │ └── subscription-adapter.unit.test.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.prod.json │ │ └── typings │ │ │ └── global.d.ts │ ├── core │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── aggregate │ │ │ │ ├── aggregate.ts │ │ │ │ ├── get-aggregates-interop-builder.ts │ │ │ │ ├── types.ts │ │ │ │ └── validate-aggregate.ts │ │ │ ├── browser.ts │ │ │ ├── errors.ts │ │ │ ├── get-log.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── interop.ts │ │ │ ├── read-model │ │ │ │ ├── get-read-models-interop-builder.ts │ │ │ │ ├── read-model.ts │ │ │ │ ├── types.ts │ │ │ │ └── validate-read-model.ts │ │ │ ├── runtime-envs.ts │ │ │ ├── saga │ │ │ │ ├── build-scheduler-projection.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── create-event-handler.ts │ │ │ │ ├── create-scheduler-aggregate.ts │ │ │ │ ├── get-sagas-interop-builder.ts │ │ │ │ ├── saga.ts │ │ │ │ ├── types.ts │ │ │ │ ├── validate-saga.ts │ │ │ │ └── wrap-side-effects.ts │ │ │ ├── symbols.ts │ │ │ ├── types │ │ │ │ ├── core.ts │ │ │ │ └── runtime.ts │ │ │ ├── utils.ts │ │ │ └── view-model │ │ │ │ ├── get-view-models-interop-builder.ts │ │ │ │ ├── types.ts │ │ │ │ ├── validate-view-model.ts │ │ │ │ └── view-model.ts │ │ ├── test │ │ │ ├── __snapshots__ │ │ │ │ └── get-aggregates-interop-builder.unit.test.ts.snap │ │ │ ├── get-aggregates-interop-builder.unit.test.ts │ │ │ ├── get-read-models-interop-builder.unit.test.ts │ │ │ ├── get-sagas-interop-builder.unit.test.ts │ │ │ ├── get-view-models-interop-builder.unit.test.ts │ │ │ ├── helpers.unit.test.ts │ │ │ └── utils.unit.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ ├── create-resolve-app │ │ ├── README.md │ │ ├── bin │ │ │ └── index.js │ │ ├── package.json │ │ ├── src │ │ │ ├── check-application-name.ts │ │ │ ├── constants.ts │ │ │ ├── create-application.ts │ │ │ ├── create-resolve-app.ts │ │ │ ├── download-resolve-repo.ts │ │ │ ├── format-examples-list.ts │ │ │ ├── get-available-examples.ts │ │ │ ├── index.ts │ │ │ ├── install.ts │ │ │ ├── message.ts │ │ │ ├── move-example.ts │ │ │ ├── patch-package-json.ts │ │ │ ├── pipeline.ts │ │ │ ├── prepare-options.ts │ │ │ ├── print-finish-output.ts │ │ │ ├── send-analytics.ts │ │ │ └── utils.ts │ │ ├── test │ │ │ ├── check-application-name.test.ts │ │ │ ├── create-application.test.ts │ │ │ ├── download-resolve-repo.test.ts │ │ │ ├── get-available-examples.test.ts │ │ │ ├── install.test.ts │ │ │ ├── language-specific-creation.test.ts │ │ │ ├── move-example.test.ts │ │ │ ├── patch-package-json.test.ts │ │ │ ├── safe-name.test.ts │ │ │ └── send-analytics.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ ├── debug-levels │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── test │ │ │ └── index.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ ├── react-hooks │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── context.ts │ │ │ ├── generic.ts │ │ │ ├── index.ts │ │ │ ├── resolve-provider.tsx │ │ │ ├── use-client.ts │ │ │ ├── use-command-builder.ts │ │ │ ├── use-command.ts │ │ │ ├── use-origin-resolver.ts │ │ │ ├── use-query-builder.ts │ │ │ ├── use-query.ts │ │ │ ├── use-static-resolver.ts │ │ │ └── use-view-model.ts │ │ ├── test │ │ │ ├── resolve-provider.unit.test.tsx │ │ │ ├── use-client.unit.test.tsx │ │ │ ├── use-command-builder.unit.test.ts │ │ │ ├── use-command.unit.test.ts │ │ │ ├── use-origin-resolver.unit.test.ts │ │ │ ├── use-query-builder.unit.test.ts │ │ │ ├── use-query.unit.test.tsx │ │ │ ├── use-static-resolver.unit.test.ts │ │ │ └── use-view-model.unit.test.tsx │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ └── redux │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── command │ │ │ ├── actions.ts │ │ │ ├── command-saga.ts │ │ │ ├── send-aggregate-action.ts │ │ │ ├── send-command-saga.ts │ │ │ └── use-redux-command.ts │ │ ├── create-resolve-middleware.ts │ │ ├── create-resolve-store.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── internal │ │ │ ├── action-types.ts │ │ │ ├── actions.ts │ │ │ ├── connect-resolve-advanced.tsx │ │ │ ├── create-saga-manager.ts │ │ │ ├── deserialize-initial-state.ts │ │ │ ├── get-hash.ts │ │ │ └── get-origin.ts │ │ ├── read-model │ │ │ ├── actions.ts │ │ │ ├── connect-read-model-saga.ts │ │ │ ├── connect-read-model.tsx │ │ │ ├── disconnect-read-model-saga.ts │ │ │ ├── initial-state-manager.ts │ │ │ ├── read-model-reducer.ts │ │ │ ├── read-models-saga.ts │ │ │ ├── use-redux-read-model-selector.ts │ │ │ └── use-redux-read-model.ts │ │ ├── resolve-redux-provider.tsx │ │ ├── root-saga.ts │ │ ├── types.ts │ │ ├── urls │ │ │ ├── connect-root-based-urls.ts │ │ │ ├── connect-static-based-urls.ts │ │ │ └── create-context-based-connector.tsx │ │ └── view-model │ │ │ ├── actions.ts │ │ │ ├── connect-view-model-saga.ts │ │ │ ├── connect-view-model.tsx │ │ │ ├── disconnect-view-model-saga.ts │ │ │ ├── event-listener-saga.ts │ │ │ ├── use-redux-view-model-selector.ts │ │ │ ├── use-redux-view-model.ts │ │ │ ├── view-model-reducer.ts │ │ │ └── view-models-saga.ts │ │ ├── test │ │ ├── command │ │ │ ├── actions.test.ts │ │ │ └── use-redux-command.test.tsx │ │ ├── create-resolve-store.test.ts │ │ ├── read-model │ │ │ ├── actions.test.ts │ │ │ ├── connect-read-model.test.tsx │ │ │ ├── initial-state-manager.test.ts │ │ │ ├── read-model-reducer.test.ts │ │ │ ├── use-redux-read-model-selector.test.ts │ │ │ └── use-redux-read-model.test.ts │ │ └── view-model │ │ │ ├── actions.test.ts │ │ │ ├── use-redux-view-model-selector.test.ts │ │ │ ├── use-redux-view-model.test.ts │ │ │ └── view-model-reducer.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json ├── modules │ ├── README.md │ ├── module-admin │ │ ├── README.md │ │ ├── bin │ │ │ └── index.js │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── api-handlers │ │ │ │ ├── event-broker-delete-property.js │ │ │ │ ├── event-broker-get-property.js │ │ │ │ ├── event-broker-list-properties.js │ │ │ │ ├── event-broker-pause.js │ │ │ │ ├── event-broker-read-models-list.js │ │ │ │ ├── event-broker-reset.js │ │ │ │ ├── event-broker-resume.js │ │ │ │ ├── event-broker-sagas-list.js │ │ │ │ ├── event-broker-set-property.js │ │ │ │ ├── event-store-export-handler.js │ │ │ │ ├── event-store-freeze-handler.js │ │ │ │ ├── event-store-import-handler.js │ │ │ │ ├── event-store-incremental-import-handler.js │ │ │ │ ├── event-store-unfreeze-handler.js │ │ │ │ ├── system-status-handler.js │ │ │ │ └── wrap-api-handler.js │ │ │ ├── cli.js │ │ │ ├── commands │ │ │ │ ├── event-store.js │ │ │ │ ├── event-store │ │ │ │ │ ├── export.js │ │ │ │ │ ├── freeze.js │ │ │ │ │ ├── import.js │ │ │ │ │ ├── incremental-import.js │ │ │ │ │ └── unfreeze.js │ │ │ │ ├── read-models.js │ │ │ │ ├── read-models │ │ │ │ │ ├── list.js │ │ │ │ │ ├── pause.js │ │ │ │ │ ├── reset.js │ │ │ │ │ └── resume.js │ │ │ │ ├── sagas.js │ │ │ │ ├── sagas │ │ │ │ │ ├── list.js │ │ │ │ │ ├── pause.js │ │ │ │ │ ├── properties.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── get.js │ │ │ │ │ │ ├── list.js │ │ │ │ │ │ ├── remove.js │ │ │ │ │ │ └── set.js │ │ │ │ │ ├── reset.js │ │ │ │ │ └── resume.js │ │ │ │ ├── system.js │ │ │ │ └── system │ │ │ │ │ └── status.js │ │ │ ├── index.js │ │ │ └── utils │ │ │ │ ├── checkMaintenanceMode.js │ │ │ │ └── getEventDate.js │ │ └── test │ │ │ ├── __mocks__ │ │ │ └── isomorphic-fetch.js │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ ├── api-handlers.test.js │ │ │ └── index.test.js │ ├── module-auth │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── api_handler_constructor.js │ │ │ ├── authenticate_wrapper.js │ │ │ ├── create_response.js │ │ │ ├── execute_strategy.js │ │ │ ├── get_root_based_url.js │ │ │ ├── index.js │ │ │ ├── logout_api_handler.js │ │ │ ├── send_auth_response.js │ │ │ └── wrap_auth_request.js │ │ └── test │ │ │ ├── authenticate_wrapper.test.js │ │ │ ├── index.test.js │ │ │ └── wrap_auth_request.test.js │ ├── module-comments │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── client │ │ │ │ ├── components │ │ │ │ │ ├── CommentsNotificationRenderless.js │ │ │ │ │ └── RefreshHelperRenderless.js │ │ │ │ ├── containers │ │ │ │ │ ├── CommentCountUpdater.js │ │ │ │ │ ├── CommentsPaginateRenderless.js │ │ │ │ │ └── CommentsTreeRenderless.js │ │ │ │ ├── index.js │ │ │ │ └── reducers │ │ │ │ │ └── comments.js │ │ │ └── common │ │ │ │ ├── aggregates │ │ │ │ ├── comments.commands.js │ │ │ │ └── verify-command.js │ │ │ │ ├── defaults.js │ │ │ │ ├── index.js │ │ │ │ ├── inject-defaults.js │ │ │ │ └── read-models │ │ │ │ ├── comments.projection.js │ │ │ │ └── comments.resolvers.js │ │ └── test │ │ │ ├── aggregates │ │ │ └── comments.commands.test.js │ │ │ └── reducers │ │ │ └── comments.test.js │ ├── module-replication │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── api-handlers │ │ │ │ ├── get-log.ts │ │ │ │ ├── occupy_replication.ts │ │ │ │ ├── pause_replication.ts │ │ │ │ ├── release_replication.ts │ │ │ │ ├── replicate.ts │ │ │ │ ├── replication_state.ts │ │ │ │ ├── reset_replication.ts │ │ │ │ ├── respond-with-error.ts │ │ │ │ └── resume_replication.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ └── module-uploader │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── package.json │ │ └── src │ │ ├── api-handlers │ │ ├── getFormUpload.js │ │ ├── getToken.js │ │ └── getUploadUrl.js │ │ └── index.js ├── runtime │ ├── adapters │ │ ├── README.md │ │ ├── eventstore-adapters │ │ │ ├── README.md │ │ │ ├── eventstore-base │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── bind-method.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── create-adapter.ts │ │ │ │ │ ├── cursor-operations.ts │ │ │ │ │ ├── drop.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── export-events.ts │ │ │ │ │ ├── export-secrets.ts │ │ │ │ │ ├── frozen-errors.ts │ │ │ │ │ ├── gather-secrets-from-events.ts │ │ │ │ │ ├── get-event-loader.ts │ │ │ │ │ ├── get-log.ts │ │ │ │ │ ├── get-next-cursor.ts │ │ │ │ │ ├── import-events.ts │ │ │ │ │ ├── import-secrets.ts │ │ │ │ │ ├── incremental-import.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── init.ts │ │ │ │ │ ├── load-events-by-timestamp-result.ts │ │ │ │ │ ├── load-events.ts │ │ │ │ │ ├── resource-errors.ts │ │ │ │ │ ├── secret-event.ts │ │ │ │ │ ├── snapshot-trigger.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── validate-event-filter.ts │ │ │ │ │ ├── wrap-dispose.ts │ │ │ │ │ └── wrap-event-filter.ts │ │ │ │ ├── test │ │ │ │ │ ├── bind-method.test.ts │ │ │ │ │ ├── concurrent-error.test.ts │ │ │ │ │ ├── cursor-to-thread-array.test.ts │ │ │ │ │ ├── custom-adapter.test.js │ │ │ │ │ ├── get-stringified-event.test.ts │ │ │ │ │ ├── maintenance-mode.test.ts │ │ │ │ │ ├── thread-array-to-cursor.test.ts │ │ │ │ │ ├── validate-event-filter.test.js │ │ │ │ │ ├── wrap-dispose.test.ts │ │ │ │ │ └── wrap-event-filter.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ │ ├── eventstore-lite │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ ├── fs.ts │ │ │ │ │ │ ├── get-log.ts │ │ │ │ │ │ ├── os.ts │ │ │ │ │ │ ├── sqlite.ts │ │ │ │ │ │ └── tmp.ts │ │ │ │ │ ├── begin-incremental-import.ts │ │ │ │ │ ├── commit-incremental-import.ts │ │ │ │ │ ├── configure.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── create-query.ts │ │ │ │ │ ├── delete-secret.ts │ │ │ │ │ ├── describe.ts │ │ │ │ │ ├── dispose.ts │ │ │ │ │ ├── drop-events.ts │ │ │ │ │ ├── drop-final.ts │ │ │ │ │ ├── drop-secrets.ts │ │ │ │ │ ├── drop-snapshot.ts │ │ │ │ │ ├── ensure-connect.ts │ │ │ │ │ ├── ensure-event-subscriber.ts │ │ │ │ │ ├── execute-query.ts │ │ │ │ │ ├── execute-sequence.ts │ │ │ │ │ ├── execute-statement.ts │ │ │ │ │ ├── freeze.ts │ │ │ │ │ ├── get-cursor-until-event-types.ts │ │ │ │ │ ├── get-event-subscribers.ts │ │ │ │ │ ├── get-latest-event.ts │ │ │ │ │ ├── get-log.ts │ │ │ │ │ ├── get-replication-state.ts │ │ │ │ │ ├── get-secret.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── init-events.ts │ │ │ │ │ ├── init-final.ts │ │ │ │ │ ├── init-replication-state-table.ts │ │ │ │ │ ├── init-secrets.ts │ │ │ │ │ ├── inject-event.ts │ │ │ │ │ ├── inject-events.ts │ │ │ │ │ ├── inject-secret.ts │ │ │ │ │ ├── integer-overflow-error.ts │ │ │ │ │ ├── load-events-by-cursor.ts │ │ │ │ │ ├── load-events-by-timestamp.ts │ │ │ │ │ ├── load-secrets.ts │ │ │ │ │ ├── load-snapshot.ts │ │ │ │ │ ├── push-incremental-import.ts │ │ │ │ │ ├── remove-event-subscriber.ts │ │ │ │ │ ├── replicate-events.ts │ │ │ │ │ ├── replicate-secrets.ts │ │ │ │ │ ├── reset-replication.ts │ │ │ │ │ ├── resource-errors.ts │ │ │ │ │ ├── rollback-incremental-import.ts │ │ │ │ │ ├── runtime-info.ts │ │ │ │ │ ├── save-event.ts │ │ │ │ │ ├── save-snapshot.ts │ │ │ │ │ ├── set-replication-lock.ts │ │ │ │ │ ├── set-replication-paused.ts │ │ │ │ │ ├── set-replication-status.ts │ │ │ │ │ ├── set-secret.ts │ │ │ │ │ ├── shape-event.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── unfreeze.ts │ │ │ │ ├── test │ │ │ │ │ ├── connect.unit.test.ts │ │ │ │ │ └── drop.unit.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ ├── tsconfig.prod.json │ │ │ │ └── typings │ │ │ │ │ └── tmp.d.ts │ │ │ ├── eventstore-mysql │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ ├── @reimagined │ │ │ │ │ │ │ └── eventstore-base.ts │ │ │ │ │ │ ├── get-log.ts │ │ │ │ │ │ └── mysql2 │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── promise.ts │ │ │ │ │ ├── base-imports.ts │ │ │ │ │ ├── begin-incremental-import.ts │ │ │ │ │ ├── commit-incremental-import.ts │ │ │ │ │ ├── configure.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── delete-secret.ts │ │ │ │ │ ├── describe.ts │ │ │ │ │ ├── dispose.ts │ │ │ │ │ ├── drop-events.ts │ │ │ │ │ ├── drop-final.ts │ │ │ │ │ ├── drop-secrets.ts │ │ │ │ │ ├── drop-snapshot.ts │ │ │ │ │ ├── ensure-event-subscriber.ts │ │ │ │ │ ├── execute-sequence.ts │ │ │ │ │ ├── freeze.ts │ │ │ │ │ ├── get-event-subscribers.ts │ │ │ │ │ ├── get-latest-event.ts │ │ │ │ │ ├── get-log.ts │ │ │ │ │ ├── get-secret.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── init-events.ts │ │ │ │ │ ├── init-final.ts │ │ │ │ │ ├── init-secrets.ts │ │ │ │ │ ├── inject-event.ts │ │ │ │ │ ├── inject-events.ts │ │ │ │ │ ├── load-events-by-cursor.ts │ │ │ │ │ ├── load-events-by-timestamp.ts │ │ │ │ │ ├── load-snapshot.ts │ │ │ │ │ ├── push-incremental-import.ts │ │ │ │ │ ├── remove-event-subscriber.ts │ │ │ │ │ ├── resource-errors.ts │ │ │ │ │ ├── rollback-incremental-import.ts │ │ │ │ │ ├── runtime-info.ts │ │ │ │ │ ├── save-event.ts │ │ │ │ │ ├── save-snapshot.ts │ │ │ │ │ ├── set-secret.ts │ │ │ │ │ ├── shape-event.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── unfreeze.ts │ │ │ │ ├── test │ │ │ │ │ ├── connect.unit.test.ts │ │ │ │ │ ├── drop.unit.test.ts │ │ │ │ │ └── index.test.js │ │ │ │ ├── tsconfig.json │ │ │ │ ├── tsconfig.prod.json │ │ │ │ └── typings │ │ │ │ │ └── mysql2.d.ts │ │ │ └── eventstore-postgresql │ │ │ │ ├── README.md │ │ │ │ ├── external.d.ts │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── __mocks__ │ │ │ │ │ ├── @reimagined │ │ │ │ │ │ └── eventstore-base.ts │ │ │ │ │ ├── get-log.ts │ │ │ │ │ └── pg.ts │ │ │ │ ├── begin-incremental-import.ts │ │ │ │ ├── check-request-timeout.ts │ │ │ │ ├── commit-incremental-import.ts │ │ │ │ ├── configure.ts │ │ │ │ ├── connect.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── create-load-query.ts │ │ │ │ ├── delete-secret.ts │ │ │ │ ├── describe.ts │ │ │ │ ├── dispose.ts │ │ │ │ ├── drop-events.ts │ │ │ │ ├── drop-final.ts │ │ │ │ ├── drop-secrets.ts │ │ │ │ ├── drop-snapshot.ts │ │ │ │ ├── ensure-event-subscriber.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── escape-id.ts │ │ │ │ ├── escape.ts │ │ │ │ ├── establish-time-limit.ts │ │ │ │ ├── execute-sequence.ts │ │ │ │ ├── execute-statement.ts │ │ │ │ ├── freeze.ts │ │ │ │ ├── full-jitter.ts │ │ │ │ ├── get-cursor-until-event-types.ts │ │ │ │ ├── get-event-loader-native.ts │ │ │ │ ├── get-event-subscribers.ts │ │ │ │ ├── get-latest-event.ts │ │ │ │ ├── get-log.ts │ │ │ │ ├── get-replication-state.ts │ │ │ │ ├── get-secret.ts │ │ │ │ ├── index.ts │ │ │ │ ├── init-events.ts │ │ │ │ ├── init-final.ts │ │ │ │ ├── init-replication-state-table.ts │ │ │ │ ├── init-secrets.ts │ │ │ │ ├── inject-event.ts │ │ │ │ ├── inject-events.ts │ │ │ │ ├── inject-secret.ts │ │ │ │ ├── load-events-by-cursor.ts │ │ │ │ ├── load-events-by-timestamp.ts │ │ │ │ ├── load-secrets.ts │ │ │ │ ├── load-snapshot.ts │ │ │ │ ├── make-postgres-client.ts │ │ │ │ ├── process-event-rows.ts │ │ │ │ ├── push-incremental-import.ts │ │ │ │ ├── remove-event-subscriber.ts │ │ │ │ ├── replicate-events.ts │ │ │ │ ├── replicate-secrets.ts │ │ │ │ ├── reset-replication.ts │ │ │ │ ├── resource-errors.ts │ │ │ │ ├── resource │ │ │ │ │ ├── create.ts │ │ │ │ │ └── destroy.ts │ │ │ │ ├── rollback-incremental-import.ts │ │ │ │ ├── runtime-info.ts │ │ │ │ ├── save-event.ts │ │ │ │ ├── save-snapshot.ts │ │ │ │ ├── set-reconnection-mode.ts │ │ │ │ ├── set-replication-lock.ts │ │ │ │ ├── set-replication-paused.ts │ │ │ │ ├── set-replication-status.ts │ │ │ │ ├── set-secret.ts │ │ │ │ ├── shape-event.ts │ │ │ │ ├── types.ts │ │ │ │ └── unfreeze.ts │ │ │ │ ├── test │ │ │ │ ├── connect.unit.test.ts │ │ │ │ ├── drop.unit.test.ts │ │ │ │ └── load-events-by-timestamp.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ ├── monitoring-adapters │ │ │ ├── monitoring-aws-cloudwatch │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── aws-sdk │ │ │ │ │ │ │ └── clients │ │ │ │ │ │ │ └── cloudwatch.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── publish.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── test │ │ │ │ │ └── index.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ │ ├── monitoring-base │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── test │ │ │ │ │ └── index.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ │ └── monitoring-console │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── publish.ts │ │ │ │ └── types.ts │ │ │ │ ├── test │ │ │ │ └── index.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ ├── readmodel-adapters │ │ │ ├── README.md │ │ │ ├── readmodel-base │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── already-disposed-error.ts │ │ │ │ │ ├── create-adapter-factory.ts │ │ │ │ │ ├── create-adapter.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── make-split-nested-path.ts │ │ │ │ │ ├── split-nested-path.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── with-performance-tracer.ts │ │ │ │ │ ├── wrap-connect.ts │ │ │ │ │ ├── wrap-disconnect.ts │ │ │ │ │ ├── wrap-dispose.ts │ │ │ │ │ ├── wrap-is-condition-unsupported-format.ts │ │ │ │ │ ├── wrap-operation.ts │ │ │ │ │ └── wrap-with-clone-args.ts │ │ │ │ ├── test │ │ │ │ │ ├── index.test.ts │ │ │ │ │ └── search-condition-unsupported-format.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ │ ├── readmodel-lite │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── build-upsert-document.ts │ │ │ │ │ ├── build.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── convert-binary-row.ts │ │ │ │ │ ├── count.ts │ │ │ │ │ ├── define-table.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── disconnect.ts │ │ │ │ │ ├── drop-read-model.ts │ │ │ │ │ ├── find-one.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── generate-guid.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── insert.ts │ │ │ │ │ ├── maybe-init.ts │ │ │ │ │ ├── passthrough-error.ts │ │ │ │ │ ├── pause.ts │ │ │ │ │ ├── reset.ts │ │ │ │ │ ├── resubscribe.ts │ │ │ │ │ ├── resume.ts │ │ │ │ │ ├── search-to-where-expression.ts │ │ │ │ │ ├── status.ts │ │ │ │ │ ├── subscribe.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── unsubscribe.ts │ │ │ │ │ ├── update-to-set-expression.ts │ │ │ │ │ └── update.ts │ │ │ │ ├── test │ │ │ │ │ └── index.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ │ ├── readmodel-mysql │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── mysql2 │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── promise │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── build-upsert-document.ts │ │ │ │ │ ├── build.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── convert-binary-row.ts │ │ │ │ │ ├── count.ts │ │ │ │ │ ├── define-table.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── disconnect.ts │ │ │ │ │ ├── drop-read-model.ts │ │ │ │ │ ├── find-one.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── generate-guid.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── inline-ledger-force-stop.ts │ │ │ │ │ ├── insert.ts │ │ │ │ │ ├── maybe-init.ts │ │ │ │ │ ├── passthrough-error.ts │ │ │ │ │ ├── pause.ts │ │ │ │ │ ├── reset.ts │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ └── destroy.ts │ │ │ │ │ ├── resubscribe.ts │ │ │ │ │ ├── resume.ts │ │ │ │ │ ├── search-to-where-expression.ts │ │ │ │ │ ├── status.ts │ │ │ │ │ ├── subscribe.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── unsubscribe.ts │ │ │ │ │ ├── update-to-set-expression.ts │ │ │ │ │ └── update.ts │ │ │ │ ├── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.test.ts.snap │ │ │ │ │ └── index.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ │ └── readmodel-postgresql │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── __mocks__ │ │ │ │ │ └── pg.js │ │ │ │ ├── build-upsert-document.ts │ │ │ │ ├── build.ts │ │ │ │ ├── connect.ts │ │ │ │ ├── convert-result-row.ts │ │ │ │ ├── count.ts │ │ │ │ ├── define-table.ts │ │ │ │ ├── delete.ts │ │ │ │ ├── disconnect.ts │ │ │ │ ├── drop-read-model.ts │ │ │ │ ├── escape-id.ts │ │ │ │ ├── escape-str.ts │ │ │ │ ├── find-one.ts │ │ │ │ ├── find.ts │ │ │ │ ├── generate-guid.ts │ │ │ │ ├── get-log.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inline-ledger-force-stop.ts │ │ │ │ ├── insert.ts │ │ │ │ ├── make-nested-path.ts │ │ │ │ ├── make-sql-query.ts │ │ │ │ ├── maybe-init.ts │ │ │ │ ├── passthrough-error.ts │ │ │ │ ├── pause.ts │ │ │ │ ├── reset.ts │ │ │ │ ├── resource │ │ │ │ │ ├── create.ts │ │ │ │ │ └── destroy.ts │ │ │ │ ├── resubscribe.ts │ │ │ │ ├── resume.ts │ │ │ │ ├── search-to-where-expression.ts │ │ │ │ ├── status.ts │ │ │ │ ├── subscribe.ts │ │ │ │ ├── types.ts │ │ │ │ ├── unsubscribe.ts │ │ │ │ ├── update-to-set-expression.ts │ │ │ │ ├── update.ts │ │ │ │ └── wrap-procedure.ts │ │ │ │ ├── test │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.ts.snap │ │ │ │ ├── index.test.ts │ │ │ │ ├── inline-ledger-force-stop.test.ts │ │ │ │ └── status.test.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.prod.json │ │ └── replicators │ │ │ └── replicator-via-api-handler │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── build.ts │ │ │ ├── call-replicate.ts │ │ │ ├── check-target-url.ts │ │ │ ├── connect.ts │ │ │ ├── drop-read-model.ts │ │ │ ├── get-log.ts │ │ │ ├── get-replication-state.ts │ │ │ ├── http-error.ts │ │ │ ├── index.ts │ │ │ ├── occupy-replication.ts │ │ │ ├── pause.ts │ │ │ ├── release-replication.ts │ │ │ ├── reset.ts │ │ │ ├── resubscribe.ts │ │ │ ├── resume.ts │ │ │ ├── set-replication-paused.ts │ │ │ ├── status.ts │ │ │ ├── types.ts │ │ │ └── unsubscribe.ts │ │ │ ├── test │ │ │ └── index.test.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.prod.json │ └── runtimes │ │ ├── runtime-aws-serverless │ │ ├── README.md │ │ ├── compile-time.js │ │ ├── external.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── __mocks__ │ │ │ │ ├── aws-sdk │ │ │ │ │ └── clients │ │ │ │ │ │ ├── cloudwatch.ts │ │ │ │ │ │ ├── iotdata.ts │ │ │ │ │ │ ├── lambda.ts │ │ │ │ │ │ ├── stepfunctions.ts │ │ │ │ │ │ └── sts.ts │ │ │ │ └── resolve-cloud-common │ │ │ │ │ ├── postgres.ts │ │ │ │ │ └── utils │ │ │ │ │ └── index.ts │ │ │ ├── api-gateway-handler.ts │ │ │ ├── cloud-service-event-handler.ts │ │ │ ├── compile-time │ │ │ │ ├── get-log.ts │ │ │ │ └── index.ts │ │ │ ├── event-subscriber-notifier-factory.ts │ │ │ ├── get-reactive-subscription-factory.ts │ │ │ ├── index.ts │ │ │ ├── lambda-worker.ts │ │ │ ├── metrics.ts │ │ │ ├── performance-tracer-factory.ts │ │ │ ├── prepare-assemblies.ts │ │ │ ├── scheduler-event-handler.ts │ │ │ ├── scheduler-factory.ts │ │ │ ├── send-reactive-event.ts │ │ │ ├── types.ts │ │ │ ├── uploader-factory.ts │ │ │ ├── utils.ts │ │ │ ├── websocket-event-handler.ts │ │ │ └── wrap-api-handler.ts │ │ ├── test │ │ │ ├── index.test.ts │ │ │ └── wrap-api-handler.unit.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ │ ├── runtime-base │ │ ├── README.md │ │ ├── external.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── bootstrap-one.ts │ │ │ ├── bootstrap.ts │ │ │ ├── builtin-routes.ts │ │ │ ├── command-executed-hook-factory.ts │ │ │ ├── command.ts │ │ │ ├── create-composite-monitoring-adapter.ts │ │ │ ├── create-runtime.ts │ │ │ ├── create-user-resolve.ts │ │ │ ├── custom-read-model.ts │ │ │ ├── defaults │ │ │ │ ├── default-view-model-resolver.ts │ │ │ │ ├── disabled-encryption.ts │ │ │ │ ├── empty-read-model-connector.ts │ │ │ │ ├── empty-upload-adapter.ts │ │ │ │ └── index.ts │ │ │ ├── dynamic-require │ │ │ │ ├── live-entry-dir.ts │ │ │ │ ├── live-require.ts │ │ │ │ ├── pure-require.js │ │ │ │ └── pure-require.webpack.js │ │ │ ├── event-broadcast-factory.ts │ │ │ ├── event-listeners-manager-factory.ts │ │ │ ├── event-subscriber.ts │ │ │ ├── event-subscribers-lifecycle.ts │ │ │ ├── event-subscribers-properties.ts │ │ │ ├── gather-event-listeners.ts │ │ │ ├── handlers │ │ │ │ ├── command-handler.ts │ │ │ │ ├── fail-handler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── live-require-handler.ts │ │ │ │ ├── main-handler.ts │ │ │ │ ├── markup-handler.ts │ │ │ │ ├── query-handler.ts │ │ │ │ ├── query-is-ready-handler.ts │ │ │ │ └── uploader-handler.ts │ │ │ ├── index.ts │ │ │ ├── load-read-model-procedure.ts │ │ │ ├── messages.ts │ │ │ ├── notification-next.ts │ │ │ ├── parse-event-subscriber-parameters.ts │ │ │ ├── query.ts │ │ │ ├── shutdown-one.ts │ │ │ ├── shutdown.ts │ │ │ ├── side-effect-timestamp-provider.ts │ │ │ ├── types.ts │ │ │ ├── utils │ │ │ │ ├── background-job.ts │ │ │ │ ├── create-event-subscriber-notification.ts │ │ │ │ ├── extract-error-http-code.ts │ │ │ │ ├── extract-request-body.ts │ │ │ │ ├── get-http-status-text.ts │ │ │ │ ├── get-log.ts │ │ │ │ ├── index.ts │ │ │ │ ├── invoke-filter-error-types.ts │ │ │ │ └── validate-path.ts │ │ │ ├── wrap-readmodel-connector.ts │ │ │ └── wrap-trie.ts │ │ ├── test │ │ │ ├── event-broadcast-factory.test.ts │ │ │ └── index.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json │ │ └── runtime-single-process │ │ ├── README.md │ │ ├── compile-time.js │ │ ├── package.json │ │ ├── src │ │ ├── __mocks__ │ │ │ └── @resolve-js │ │ │ │ ├── core.ts │ │ │ │ └── runtime-base.ts │ │ ├── api-handlers │ │ │ ├── export-event-store-handler.ts │ │ │ ├── import-event-store-handler.ts │ │ │ ├── index.ts │ │ │ └── reset-domain-handler.ts │ │ ├── clean-up-process.ts │ │ ├── compile-time │ │ │ └── index.ts │ │ ├── create-pubsub-manager.ts │ │ ├── event-subscriber-notifier-factory.ts │ │ ├── express-app-factory.ts │ │ ├── get-reactive-subscription-factory.ts │ │ ├── index.ts │ │ ├── init-executor.ts │ │ ├── performance-tracer-factory.ts │ │ ├── prepare-domain.ts │ │ ├── scheduler-factory.ts │ │ ├── start-express.ts │ │ ├── types.ts │ │ ├── uploader-factory.ts │ │ ├── websocket-server-factory.ts │ │ └── wrap-api-handler.ts │ │ ├── test │ │ ├── init-executor.unit.test.ts │ │ └── wrap-api-handler.unit.test.ts │ │ ├── tsconfig.json │ │ └── tsconfig.prod.json └── tools │ ├── scripts │ ├── README.md │ ├── configs │ │ ├── default.resolve.config.json │ │ ├── env.list.json │ │ ├── message.json │ │ ├── schema.resolve.config.json │ │ └── stats.config.json │ ├── index.d.ts │ ├── package.json │ ├── src │ │ ├── __mocks__ │ │ │ └── crypto.js │ │ ├── adjust-resolve-config.js │ │ ├── adjust_webpack_common_packages.js │ │ ├── adjust_webpack_react_native.js │ │ ├── alias │ │ │ ├── $resolve.aggregates.js │ │ │ ├── $resolve.apiHandlers.js │ │ │ ├── $resolve.applicationName.js │ │ │ ├── $resolve.cdnUrl.js │ │ │ ├── $resolve.chunkReactNative.js │ │ │ ├── $resolve.clientChunk.js │ │ │ ├── $resolve.clientEntry.js │ │ │ ├── $resolve.clientImports.js │ │ │ ├── $resolve.constants.js │ │ │ ├── $resolve.customConstants.js │ │ │ ├── $resolve.distDir.js │ │ │ ├── $resolve.eventstoreAdapter.js │ │ │ ├── $resolve.guardOnlyServer.js │ │ │ ├── $resolve.host.js │ │ │ ├── $resolve.jwtCookie.js │ │ │ ├── $resolve.middlewares.js │ │ │ ├── $resolve.monitoringAdapters.js │ │ │ ├── $resolve.port.js │ │ │ ├── $resolve.readModel.js │ │ │ ├── $resolve.readModelConnectors.js │ │ │ ├── $resolve.readModelProcedure.js │ │ │ ├── $resolve.readModels.js │ │ │ ├── $resolve.resolveVersion.js │ │ │ ├── $resolve.rootPath.js │ │ │ ├── $resolve.sagas.js │ │ │ ├── $resolve.seedClientEnvs.js │ │ │ ├── $resolve.serverAssemblies.js │ │ │ ├── $resolve.serverImports.js │ │ │ ├── $resolve.staticDir.js │ │ │ ├── $resolve.staticPath.js │ │ │ ├── $resolve.uploadAdapter.js │ │ │ └── $resolve.viewModels.js │ │ ├── attach_webpack_configs_client_entries.js │ │ ├── build_mode.js │ │ ├── client_global_object.js │ │ ├── constants.js │ │ ├── copy_env_to_dist.js │ │ ├── declare_import_key.js │ │ ├── declare_runtime_env.js │ │ ├── detect_errors.js │ │ ├── export_event_store_mode.js │ │ ├── generate_custom_mode.js │ │ ├── get-log.js │ │ ├── get_client_entries.js │ │ ├── get_entry_options.js │ │ ├── get_modules_dirs.js │ │ ├── get_monorepo_node_modules.js │ │ ├── get_peer_dependencies.js │ │ ├── get_webpack_alias.js │ │ ├── get_webpack_client_configs.js │ │ ├── get_webpack_common_configs.js │ │ ├── get_webpack_configs.js │ │ ├── import-resource.js │ │ ├── import_event_store_mode.js │ │ ├── index.js │ │ ├── merge.js │ │ ├── open_browser.js │ │ ├── prepare_urls.js │ │ ├── process_manager.js │ │ ├── reset_mode.js │ │ ├── resolve-resource.js │ │ ├── run_testcafe.js │ │ ├── show_build_info.js │ │ ├── start_mode.js │ │ ├── use_yarn.js │ │ ├── val_query_loader.js │ │ ├── validate_config.js │ │ ├── watch_mode.js │ │ └── write_package_jsons_for_assemblies.js │ └── test │ │ ├── __snapshots__ │ │ └── get-webpack-configs.test.js.snap │ │ ├── alias │ │ ├── $resolve.aggregates.test.js │ │ ├── $resolve.apiHandlers.test.js │ │ ├── $resolve.applicationName.test.js │ │ ├── $resolve.chunkReactNative.test.js │ │ ├── $resolve.constants.test.js │ │ ├── $resolve.customConstants.test.js │ │ ├── $resolve.distDir.test.js │ │ ├── $resolve.eventstoreAdapter.test.js │ │ ├── $resolve.host.test.js │ │ ├── $resolve.jwtCookie.test.js │ │ ├── $resolve.port.test.js │ │ ├── $resolve.readModelConnectors.test.js │ │ ├── $resolve.readModels.test.js │ │ ├── $resolve.rootPath.test.js │ │ ├── $resolve.sagas.test.js │ │ ├── $resolve.seedClientEnvs.test.js │ │ ├── $resolve.serverAssemblies.test.js │ │ ├── $resolve.staticDir.test.js │ │ ├── $resolve.staticPath.test.js │ │ ├── $resolve.viewModels.test.js │ │ ├── __snapshots__ │ │ │ ├── $resolve.aggregates.test.js.snap │ │ │ ├── $resolve.apiHandlers.test.js.snap │ │ │ ├── $resolve.applicationName.test.js.snap │ │ │ ├── $resolve.chunkReactNative.test.js.snap │ │ │ ├── $resolve.constants.test.js.snap │ │ │ ├── $resolve.customConstants.test.js.snap │ │ │ ├── $resolve.distDir.test.js.snap │ │ │ ├── $resolve.eventstoreAdapter.test.js.snap │ │ │ ├── $resolve.host.test.js.snap │ │ │ ├── $resolve.jwtCookie.test.js.snap │ │ │ ├── $resolve.port.test.js.snap │ │ │ ├── $resolve.readModelConnectors.test.js.snap │ │ │ ├── $resolve.readModels.test.js.snap │ │ │ ├── $resolve.rootPath.test.js.snap │ │ │ ├── $resolve.sagas.test.js.snap │ │ │ ├── $resolve.seedClientEnvs.test.js.snap │ │ │ ├── $resolve.serverAssemblies.test.js.snap │ │ │ ├── $resolve.staticDir.test.js.snap │ │ │ ├── $resolve.staticPath.test.js.snap │ │ │ └── $resolve.viewModels.test.js.snap │ │ ├── files │ │ │ ├── testAdapter.js │ │ │ ├── testApiHandler.js │ │ │ ├── testClientIndex.js │ │ │ ├── testCommands.js │ │ │ ├── testCommandsAsModule.js │ │ │ ├── testDeserializeState.js │ │ │ ├── testEnhancer.js │ │ │ ├── testLocalDependency.js │ │ │ ├── testMiddleware.js │ │ │ ├── testProjection.js │ │ │ ├── testProjectionAsModule.js │ │ │ ├── testReadmodelConnector.js │ │ │ ├── testReducer.js │ │ │ ├── testResolvers.js │ │ │ ├── testResolversAsModule.js │ │ │ ├── testRoutes.js │ │ │ ├── testSaga.js │ │ │ ├── testSagaCronHandlers.js │ │ │ ├── testSagaEventHandlers.js │ │ │ ├── testSerializeState.js │ │ │ ├── testSnapshotAdapter.js │ │ │ ├── testStrategies.js │ │ │ └── testValidator.js │ │ └── normalize_paths.js │ │ ├── config.test.js │ │ ├── get-webpack-configs.test.js │ │ ├── normalize_paths.js │ │ └── validate_config.test.js │ └── testing-tools │ ├── README.md │ ├── package.json │ ├── src │ ├── constants.ts │ ├── flow │ │ ├── aggregate │ │ │ ├── aggregate.ts │ │ │ ├── as.ts │ │ │ ├── command.ts │ │ │ ├── make-test-environment.ts │ │ │ ├── should-produce-event.ts │ │ │ ├── should-throw.ts │ │ │ └── with-secrets-manager.ts │ │ ├── given-events.ts │ │ ├── read-model │ │ │ ├── as.ts │ │ │ ├── make-test-environment.ts │ │ │ ├── not.ts │ │ │ ├── query.ts │ │ │ ├── read-model.ts │ │ │ ├── should-return.ts │ │ │ ├── with-adapter.ts │ │ │ ├── with-encryption.ts │ │ │ └── with-secrets-manager.ts │ │ └── saga │ │ │ ├── allow-side-effects.ts │ │ │ ├── make-assertions.ts │ │ │ ├── make-test-environment.ts │ │ │ ├── mock-command-implementation.ts │ │ │ ├── mock-query-implementation.ts │ │ │ ├── saga.ts │ │ │ ├── should-execute-command.ts │ │ │ ├── should-execute-query.ts │ │ │ ├── should-execute-side-effect.ts │ │ │ ├── start-side-effects-from.ts │ │ │ ├── with-adapter.ts │ │ │ ├── with-encryption.ts │ │ │ └── with-secrets-manager.ts │ ├── index.ts │ ├── runtime │ │ ├── events-utils.ts │ │ ├── get-event-store.ts │ │ ├── get-read-model-adapter.ts │ │ ├── get-saga-runtime.ts │ │ ├── get-secrets-manager.ts │ │ ├── mock-side-effects.ts │ │ └── utils.ts │ ├── types.ts │ └── utils │ │ ├── assertions.ts │ │ └── format.ts │ ├── test │ ├── __snapshots__ │ │ └── read-model.test.ts.snap │ ├── aggregate.test.ts │ ├── bdd-chain.test.ts │ ├── broken-event-loop.test.ts │ ├── read-model.test.ts │ └── saga.test.ts │ ├── tsconfig.json │ └── tsconfig.prod.json ├── templates ├── README.md ├── js │ ├── postcss │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ │ ├── components │ │ │ │ ├── App.js │ │ │ │ ├── PostCSS.css │ │ │ │ └── PostCSS.js │ │ │ ├── containers │ │ │ │ ├── Header.js │ │ │ │ └── StaticImage.js │ │ │ ├── get-routes.js │ │ │ ├── index.js │ │ │ └── ssr.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── fb-logo.png │ │ │ ├── github-logo.png │ │ │ ├── resolve-logo.png │ │ │ └── twitter-logo.png │ │ └── test │ │ │ └── e2e │ │ │ └── index.test.js │ ├── react │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ │ ├── components │ │ │ │ ├── MyAggregateItems.js │ │ │ │ └── MyAggregateList.js │ │ │ ├── containers │ │ │ │ └── App.js │ │ │ └── index.js │ │ ├── common │ │ │ ├── aggregates │ │ │ │ ├── my-aggregate.commands.js │ │ │ │ └── my-aggregate.projection.js │ │ │ ├── event-types.js │ │ │ ├── read-models │ │ │ │ ├── my-aggregate-list.projection.js │ │ │ │ └── my-aggregate-list.resolvers.js │ │ │ ├── types.js │ │ │ └── view-models │ │ │ │ └── my-aggregate-items.projection.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── resolve-logo.png │ │ │ └── style.css │ │ └── test │ │ │ ├── e2e │ │ │ └── index.test.js │ │ │ └── unit │ │ │ ├── aggregates.test.js │ │ │ ├── read-models.test.js │ │ │ └── view-models.test.js │ ├── styled-components │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ │ ├── components │ │ │ │ ├── App.js │ │ │ │ └── StyledComponents.js │ │ │ ├── containers │ │ │ │ ├── Header.js │ │ │ │ └── StaticImage.js │ │ │ ├── get-routes.js │ │ │ ├── index.js │ │ │ └── ssr.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── fb-logo.png │ │ │ ├── github-logo.png │ │ │ ├── resolve-logo.png │ │ │ └── twitter-logo.png │ │ └── test │ │ │ └── e2e │ │ │ └── index.test.js │ ├── vanilla │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ │ ├── index.js │ │ │ ├── init-ui.js │ │ │ └── update-ui.js │ │ ├── common │ │ │ ├── aggregates │ │ │ │ └── chat.commands.js │ │ │ ├── api-handlers │ │ │ │ └── markup.js │ │ │ └── view-models │ │ │ │ └── chat.projection.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.test-functional.js │ │ ├── data │ │ │ └── .gitignore │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ │ ├── favicon.png │ │ │ └── style.css │ │ └── test │ │ │ └── e2e │ │ │ └── index.test.js │ └── vue │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── client │ │ ├── App.vue │ │ ├── index.js │ │ └── ssr.js │ │ ├── config.adjust-webpack.js │ │ ├── config.app.js │ │ ├── config.cloud.js │ │ ├── config.dev.js │ │ ├── config.prod.js │ │ ├── config.test-functional.js │ │ ├── data │ │ └── .gitignore │ │ ├── package.json │ │ ├── run.js │ │ ├── static │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── github-logo.png │ │ ├── resolve-logo.png │ │ └── twitter-logo.png │ │ └── test │ │ └── e2e │ │ └── index.test.js └── ts │ ├── angular │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── app │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ └── main.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── github-logo.png │ │ ├── resolve-logo.png │ │ └── twitter-logo.png │ ├── test │ │ └── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ ├── tsconfig.client.json │ └── tsconfig.json │ ├── postcss │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── components │ │ │ ├── App.tsx │ │ │ ├── PostCSS.css │ │ │ └── PostCSS.tsx │ │ ├── containers │ │ │ ├── Header.tsx │ │ │ └── StaticImage.tsx │ │ ├── get-routes.ts │ │ ├── index.tsx │ │ └── ssr.tsx │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── jest.config.ts │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── github-logo.png │ │ ├── resolve-logo.png │ │ └── twitter-logo.png │ ├── test │ │ └── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── typings.d.ts │ ├── react │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── components │ │ │ ├── MyAggregateItems.tsx │ │ │ └── MyAggregateList.tsx │ │ ├── containers │ │ │ └── App.tsx │ │ └── index.tsx │ ├── common │ │ ├── aggregates │ │ │ ├── my-aggregate.commands.ts │ │ │ └── my-aggregate.projection.ts │ │ ├── event-types.ts │ │ ├── read-models │ │ │ ├── my-aggregate-list.projection.ts │ │ │ └── my-aggregate-list.resolvers.ts │ │ ├── types.ts │ │ └── view-models │ │ │ └── my-aggregate-items.projection.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── jest.config.ts │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── resolve-logo.png │ │ └── style.css │ ├── test │ │ ├── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ │ └── unit │ │ │ ├── aggregates.test.ts │ │ │ ├── read-models.test.ts │ │ │ └── view-models.test.js │ └── tsconfig.json │ ├── styled-components │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── components │ │ │ ├── App.tsx │ │ │ └── StyledComponents.tsx │ │ ├── containers │ │ │ ├── Header.tsx │ │ │ └── StaticImage.tsx │ │ ├── get-routes.ts │ │ ├── index.tsx │ │ └── ssr.tsx │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── jest.config.ts │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fb-logo.png │ │ ├── github-logo.png │ │ ├── resolve-logo.png │ │ └── twitter-logo.png │ ├── test │ │ └── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ └── tsconfig.json │ ├── vanilla │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ │ ├── index.ts │ │ ├── init-ui.ts │ │ └── update-ui.ts │ ├── common │ │ ├── aggregates │ │ │ └── chat.commands.ts │ │ ├── api-handlers │ │ │ └── markup.ts │ │ └── view-models │ │ │ └── chat.projection.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.test-functional.ts │ ├── data │ │ └── .gitignore │ ├── package.json │ ├── run.ts │ ├── static │ │ ├── favicon.png │ │ └── style.css │ ├── test │ │ └── e2e │ │ │ ├── index.test.ts │ │ │ └── tsconfig.json │ ├── tsconfig.json │ └── types.ts │ └── vue │ ├── .babelrc │ ├── .gitignore │ ├── .testcaferc.json │ ├── README.md │ ├── client │ ├── App.vue │ ├── index.ts │ └── ssr.ts │ ├── config.adjust-webpack.ts │ ├── config.app.ts │ ├── config.cloud.ts │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.test-functional.ts │ ├── data │ └── .gitignore │ ├── package.json │ ├── run.ts │ ├── static │ ├── favicon.png │ ├── fb-logo.png │ ├── github-logo.png │ ├── resolve-logo.png │ └── twitter-logo.png │ ├── test │ └── e2e │ │ ├── index.test.ts │ │ └── tsconfig.json │ ├── tsconfig.json │ └── typings.d.ts ├── tests ├── .gitignore ├── README.md ├── custom-readmodel-sample │ ├── config.js │ ├── connector.js │ ├── connector.test.js │ ├── projection.js │ └── resolvers.js ├── eventstore-connect-dispose │ └── index.test.ts ├── eventstore-filter-events │ └── index.test.ts ├── eventstore-freeze-unfreeze │ └── index.test.ts ├── eventstore-init-drop │ └── index.test.ts ├── eventstore-order-events │ └── index.test.ts ├── eventstore-parallel-save │ └── index.test.ts ├── eventstore-replication │ └── index.test.ts ├── eventstore-save-load │ └── index.test.ts ├── eventstore-secrets │ └── index.test.ts ├── eventstore-test-utils │ └── index.ts ├── eventstore-timeout │ └── index.test.ts ├── import-export-sample │ ├── create-stream-buffer.ts │ └── import-export.test.ts ├── incremental-import │ ├── create-adapter.ts │ └── index.test.ts ├── jest.config.js ├── node-postgres │ └── index.test.ts ├── package.json ├── read-model-advanced-sample │ ├── __snapshots__ │ │ └── index.test.js.snap │ ├── config.js │ ├── index.test.js │ ├── projection.js │ └── resolvers.js ├── read-model-builder-postgres │ └── index.test.ts ├── read-model-comments-sample │ ├── __snapshots__ │ │ └── index.test.js.snap │ ├── config.js │ ├── index.test.js │ ├── projection.js │ └── resolvers.js ├── read-model-store-api │ ├── config.js │ ├── count.test.js │ ├── find-and-find-one.test.js │ ├── insert.test.js │ ├── projection-fail-init.test.js │ ├── projection.test.js │ ├── resolvers.js │ ├── update.$inc.test.js │ ├── update.$set.test.js │ ├── update.$unset.test.js │ └── upsert.test.js ├── read-model-stories-sample │ ├── __snapshots__ │ │ └── index.test.js.snap │ ├── config.js │ ├── index.test.js │ ├── projection.js │ └── resolvers.js ├── readmodel-test-utils │ └── index.ts ├── resolve-scripts-sample │ └── run.js ├── saga-mock-side-effects-sample │ ├── config.js │ ├── saga.js │ └── saga.test.js ├── saga-sample │ ├── config.js │ ├── saga.js │ └── saga.test.js ├── saga-with-authorization-sample │ ├── __snapshots__ │ │ └── saga.test.js.snap │ ├── config.js │ ├── jwt-secret.js │ ├── process.commands.js │ ├── saga.js │ └── saga.test.js └── tsconfig.json ├── tutorial ├── lesson-1 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── common │ │ ├── aggregates │ │ │ ├── shopping_list.commands.js │ │ │ └── shopping_list.projection.js │ │ └── eventTypes.js │ ├── config.adjust-webpack.js │ ├── config.app.js │ ├── config.cloud.js │ ├── config.dev.js │ ├── config.prod.js │ ├── config.test-functional.js │ ├── data │ │ └── .gitignore │ ├── jest.config.js │ ├── package.json │ ├── run.js │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── resolve-logo.png │ │ └── style.css │ └── test │ │ └── e2e │ │ └── index.test.js ├── lesson-2 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── common │ │ ├── aggregates │ │ │ ├── shopping_list.commands.js │ │ │ └── shopping_list.projection.js │ │ ├── eventTypes.js │ │ └── read-models │ │ │ ├── shopping_lists.projection.js │ │ │ └── shopping_lists.resolvers.js │ ├── config.adjust-webpack.js │ ├── config.app.js │ ├── config.cloud.js │ ├── config.dev.js │ ├── config.prod.js │ ├── config.test-functional.js │ ├── data │ │ └── .gitignore │ ├── jest.config.js │ ├── package.json │ ├── run.js │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── resolve-logo.png │ │ └── style.css │ └── test │ │ └── e2e │ │ └── index.test.js ├── lesson-3 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── client │ │ ├── components │ │ │ ├── App.js │ │ │ ├── Header.js │ │ │ ├── MyLists.js │ │ │ └── ShoppingLists.js │ │ ├── index.js │ │ └── routes.js │ ├── common │ │ ├── aggregates │ │ │ ├── shopping_list.commands.js │ │ │ └── shopping_list.projection.js │ │ ├── eventTypes.js │ │ └── read-models │ │ │ ├── shopping_lists.projection.js │ │ │ └── shopping_lists.resolvers.js │ ├── config.adjust-webpack.js │ ├── config.app.js │ ├── config.cloud.js │ ├── config.dev.js │ ├── config.prod.js │ ├── config.test-functional.js │ ├── data │ │ └── .gitignore │ ├── jest.config.js │ ├── package.json │ ├── run.js │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── resolve-logo.png │ │ └── style.css │ └── test │ │ └── e2e │ │ └── index.test.js ├── lesson-4 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── client │ │ ├── components │ │ │ ├── App.js │ │ │ ├── Header.js │ │ │ ├── MyLists.js │ │ │ ├── ShoppingList.js │ │ │ ├── ShoppingListItem.js │ │ │ └── ShoppingLists.js │ │ ├── index.js │ │ └── routes.js │ ├── common │ │ ├── aggregates │ │ │ ├── shopping_list.commands.js │ │ │ └── shopping_list.projection.js │ │ ├── eventTypes.js │ │ ├── read-models │ │ │ ├── shopping_lists.projection.js │ │ │ └── shopping_lists.resolvers.js │ │ └── view-models │ │ │ └── shopping_list.projection.js │ ├── config.adjust-webpack.js │ ├── config.app.js │ ├── config.cloud.js │ ├── config.dev.js │ ├── config.prod.js │ ├── config.test-functional.js │ ├── data │ │ └── .gitignore │ ├── jest.config.js │ ├── package.json │ ├── run.js │ ├── static │ │ ├── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── resolve-logo.png │ │ └── style.css │ └── test │ │ └── e2e │ │ └── index.test.js └── lesson-5 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── client │ ├── components │ │ ├── App.js │ │ ├── Header.js │ │ ├── MyLists.js │ │ ├── ShoppingList.js │ │ ├── ShoppingListCreator.js │ │ ├── ShoppingListItem.js │ │ ├── ShoppingListRemover.js │ │ └── ShoppingLists.js │ ├── index.js │ └── routes.js │ ├── common │ ├── aggregates │ │ ├── shopping_list.commands.js │ │ └── shopping_list.projection.js │ ├── eventTypes.js │ ├── read-models │ │ ├── shopping_lists.projection.js │ │ └── shopping_lists.resolvers.js │ └── view-models │ │ └── shopping_list.projection.js │ ├── config.adjust-webpack.js │ ├── config.app.js │ ├── config.cloud.js │ ├── config.dev.js │ ├── config.prod.js │ ├── config.test-functional.js │ ├── data │ └── .gitignore │ ├── jest.config.js │ ├── package.json │ ├── run.js │ ├── static │ ├── bootstrap.min.css │ ├── favicon.ico │ ├── favicon.png │ ├── resolve-logo.png │ └── style.css │ └── test │ └── e2e │ └── index.test.js ├── validate-lock-file.js ├── website ├── blog │ └── 2018-12-5-welcome.md ├── docusaurus.config.js ├── package.json ├── sidebars.json ├── src │ ├── css │ │ └── customTheme.css │ └── pages │ │ └── index.js └── static │ ├── css │ └── custom.css │ └── img │ ├── background.png │ ├── cqrs.png │ ├── ddd.png │ ├── don-t-lose-your-data.png │ ├── event-sourcing.png │ ├── everything-you-need-in-one-place.png │ ├── favicon.png │ ├── full-stack-scalable-modern-app.png │ ├── header-background.svg │ ├── reSolve400x400-fill.png │ ├── react-redux.png │ ├── resolve-light.svg │ ├── resolve.png │ └── resolve.svg └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @resolve-bot 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/manual-cloud-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/manual-cloud-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr-cra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/pr-cra.yml -------------------------------------------------------------------------------- /.github/workflows/pr-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/pr-dev.yml -------------------------------------------------------------------------------- /.github/workflows/pr-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/pr-release.yml -------------------------------------------------------------------------------- /.github/workflows/push-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/push-dev.yml -------------------------------------------------------------------------------- /.github/workflows/push-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/push-master.yml -------------------------------------------------------------------------------- /.github/workflows/resolve-gate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github/workflows/resolve-gate.yml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/doc.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.vscode/doc.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/_config.yml -------------------------------------------------------------------------------- /benchmarks/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/.eslintrc.js -------------------------------------------------------------------------------- /benchmarks/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/eventstore/import-eventstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/eventstore/import-eventstore.ts -------------------------------------------------------------------------------- /benchmarks/eventstore/load-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/eventstore/load-events.ts -------------------------------------------------------------------------------- /benchmarks/eventstore/parallel-save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/eventstore/parallel-save.ts -------------------------------------------------------------------------------- /benchmarks/eventstore/save-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/eventstore/save-event.ts -------------------------------------------------------------------------------- /benchmarks/eventstore/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/eventstore/utils.ts -------------------------------------------------------------------------------- /benchmarks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/package.json -------------------------------------------------------------------------------- /benchmarks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/benchmarks/tsconfig.json -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/adapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/adapters.md -------------------------------------------------------------------------------- /docs/api-handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api-handlers.md -------------------------------------------------------------------------------- /docs/api/aggregate/command-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/aggregate/command-handler.md -------------------------------------------------------------------------------- /docs/api/aggregate/projection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/aggregate/projection.md -------------------------------------------------------------------------------- /docs/api/api-handler/api-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/api-handler/api-handler.md -------------------------------------------------------------------------------- /docs/api/api-handler/resolve-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/api-handler/resolve-context.md -------------------------------------------------------------------------------- /docs/api/client/entry-point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/client/entry-point.md -------------------------------------------------------------------------------- /docs/api/client/http-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/client/http-api.md -------------------------------------------------------------------------------- /docs/api/client/request-middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/client/request-middleware.md -------------------------------------------------------------------------------- /docs/api/client/resolve-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/client/resolve-client.md -------------------------------------------------------------------------------- /docs/api/client/resolve-react-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/client/resolve-react-hooks.md -------------------------------------------------------------------------------- /docs/api/client/resolve-redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/client/resolve-redux.md -------------------------------------------------------------------------------- /docs/api/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/command.md -------------------------------------------------------------------------------- /docs/api/encryption/factory-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/encryption/factory-function.md -------------------------------------------------------------------------------- /docs/api/encryption/secrets-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/encryption/secrets-manager.md -------------------------------------------------------------------------------- /docs/api/event-store-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/event-store-adapter.md -------------------------------------------------------------------------------- /docs/api/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/event.md -------------------------------------------------------------------------------- /docs/api/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/middleware.md -------------------------------------------------------------------------------- /docs/api/monitoring/metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/monitoring/metric.md -------------------------------------------------------------------------------- /docs/api/monitoring/monitoring-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/monitoring/monitoring-adapter.md -------------------------------------------------------------------------------- /docs/api/monitoring/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/monitoring/monitoring.md -------------------------------------------------------------------------------- /docs/api/read-model/connector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/read-model/connector.md -------------------------------------------------------------------------------- /docs/api/read-model/projection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/read-model/projection.md -------------------------------------------------------------------------------- /docs/api/read-model/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/read-model/query.md -------------------------------------------------------------------------------- /docs/api/read-model/resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/read-model/resolver.md -------------------------------------------------------------------------------- /docs/api/read-model/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/read-model/store.md -------------------------------------------------------------------------------- /docs/api/resolve-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/resolve-scripts.md -------------------------------------------------------------------------------- /docs/api/saga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/saga.md -------------------------------------------------------------------------------- /docs/api/view-model/projection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/view-model/projection.md -------------------------------------------------------------------------------- /docs/api/view-model/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/view-model/query.md -------------------------------------------------------------------------------- /docs/api/view-model/resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/api/view-model/resolver.md -------------------------------------------------------------------------------- /docs/application-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/application-configuration.md -------------------------------------------------------------------------------- /docs/assets/getting-started-new-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/assets/getting-started-new-app.png -------------------------------------------------------------------------------- /docs/assets/tutorial/lesson3-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/assets/tutorial/lesson3-result.png -------------------------------------------------------------------------------- /docs/assets/tutorial/lesson4-list-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/assets/tutorial/lesson4-list-items.png -------------------------------------------------------------------------------- /docs/assets/tutorial/lesson4-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/assets/tutorial/lesson4-navigation.png -------------------------------------------------------------------------------- /docs/assets/tutorial/lesson5-check-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/assets/tutorial/lesson5-check-item.png -------------------------------------------------------------------------------- /docs/assets/tutorial/lesson5-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/assets/tutorial/lesson5-delete.png -------------------------------------------------------------------------------- /docs/authentication-and-authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/authentication-and-authorization.md -------------------------------------------------------------------------------- /docs/code-splitting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/code-splitting.md -------------------------------------------------------------------------------- /docs/custom-read-model-connectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/custom-read-model-connectors.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/encryption.md -------------------------------------------------------------------------------- /docs/export-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/export-import.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/file-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/file-upload.md -------------------------------------------------------------------------------- /docs/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/frontend.md -------------------------------------------------------------------------------- /docs/getting-started-chart/_index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/getting-started-chart/_index.mdx -------------------------------------------------------------------------------- /docs/getting-started-chart/pages/_client.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/getting-started-chart/pages/_client.mdx -------------------------------------------------------------------------------- /docs/getting-started-chart/pages/_sagas.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/getting-started-chart/pages/_sagas.mdx -------------------------------------------------------------------------------- /docs/getting-started-chart/pages/_server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/getting-started-chart/pages/_server.mdx -------------------------------------------------------------------------------- /docs/getting-started-chart/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/getting-started-chart/static/styles.css -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/manage-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/manage-application.md -------------------------------------------------------------------------------- /docs/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/middleware.md -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/modules.md -------------------------------------------------------------------------------- /docs/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/monitoring.md -------------------------------------------------------------------------------- /docs/preparing-for-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/preparing-for-production.md -------------------------------------------------------------------------------- /docs/read-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/read-side.md -------------------------------------------------------------------------------- /docs/resolve-app-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/resolve-app-structure.md -------------------------------------------------------------------------------- /docs/running-in-containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/running-in-containers.md -------------------------------------------------------------------------------- /docs/sagas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/sagas.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /docs/typescript-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/typescript-support.md -------------------------------------------------------------------------------- /docs/write-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/docs/write-side.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/js/hacker-news/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/.babelrc -------------------------------------------------------------------------------- /examples/js/hacker-news/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/.gitignore -------------------------------------------------------------------------------- /examples/js/hacker-news/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/.prettierignore -------------------------------------------------------------------------------- /examples/js/hacker-news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/README.md -------------------------------------------------------------------------------- /examples/js/hacker-news/auth/jwt-secret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/auth/jwt-secret.js -------------------------------------------------------------------------------- /examples/js/hacker-news/client/constants.js: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20 2 | -------------------------------------------------------------------------------- /examples/js/hacker-news/client/get-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/client/get-redux.js -------------------------------------------------------------------------------- /examples/js/hacker-news/client/get-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/client/get-routes.js -------------------------------------------------------------------------------- /examples/js/hacker-news/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/client/index.js -------------------------------------------------------------------------------- /examples/js/hacker-news/client/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/client/ssr.js -------------------------------------------------------------------------------- /examples/js/hacker-news/client/types.js: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /examples/js/hacker-news/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/config.app.js -------------------------------------------------------------------------------- /examples/js/hacker-news/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/config.cloud.js -------------------------------------------------------------------------------- /examples/js/hacker-news/config.dev.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/config.dev.common.js -------------------------------------------------------------------------------- /examples/js/hacker-news/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/config.dev.js -------------------------------------------------------------------------------- /examples/js/hacker-news/config.docker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/config.docker.js -------------------------------------------------------------------------------- /examples/js/hacker-news/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/config.prod.js -------------------------------------------------------------------------------- /examples/js/hacker-news/data-replica/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/js/hacker-news/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/js/hacker-news/import/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/import/api.js -------------------------------------------------------------------------------- /examples/js/hacker-news/import/importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/import/importer.js -------------------------------------------------------------------------------- /examples/js/hacker-news/import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/import/index.js -------------------------------------------------------------------------------- /examples/js/hacker-news/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/jest.config.js -------------------------------------------------------------------------------- /examples/js/hacker-news/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/package.json -------------------------------------------------------------------------------- /examples/js/hacker-news/run-e2e-docker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/run-e2e-docker.js -------------------------------------------------------------------------------- /examples/js/hacker-news/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/run.js -------------------------------------------------------------------------------- /examples/js/hacker-news/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/static/favicon.ico -------------------------------------------------------------------------------- /examples/js/hacker-news/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/static/favicon.png -------------------------------------------------------------------------------- /examples/js/hacker-news/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/static/style.css -------------------------------------------------------------------------------- /examples/js/hacker-news/test/e2e/1.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/test/e2e/1.user.js -------------------------------------------------------------------------------- /examples/js/hacker-news/test/e2e/2.story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/test/e2e/2.story.js -------------------------------------------------------------------------------- /examples/js/hacker-news/test/e2e/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/hacker-news/test/e2e/utils.js -------------------------------------------------------------------------------- /examples/js/hacker-news/test/unit/jest-setup.js: -------------------------------------------------------------------------------- 1 | jest.spyOn(console, 'warn').mockImplementation(void 0) 2 | -------------------------------------------------------------------------------- /examples/js/personal-data/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/.babelrc -------------------------------------------------------------------------------- /examples/js/personal-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/.gitignore -------------------------------------------------------------------------------- /examples/js/personal-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/README.md -------------------------------------------------------------------------------- /examples/js/personal-data/auth/jwt-secret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/auth/jwt-secret.js -------------------------------------------------------------------------------- /examples/js/personal-data/client/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/client/context.js -------------------------------------------------------------------------------- /examples/js/personal-data/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/client/index.js -------------------------------------------------------------------------------- /examples/js/personal-data/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/client/routes.js -------------------------------------------------------------------------------- /examples/js/personal-data/common/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/common/errors.js -------------------------------------------------------------------------------- /examples/js/personal-data/common/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/common/jwt.js -------------------------------------------------------------------------------- /examples/js/personal-data/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/config.app.js -------------------------------------------------------------------------------- /examples/js/personal-data/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/config.cloud.js -------------------------------------------------------------------------------- /examples/js/personal-data/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/config.dev.js -------------------------------------------------------------------------------- /examples/js/personal-data/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/config.prod.js -------------------------------------------------------------------------------- /examples/js/personal-data/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/js/personal-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/package.json -------------------------------------------------------------------------------- /examples/js/personal-data/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/run.js -------------------------------------------------------------------------------- /examples/js/personal-data/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/static/favicon.ico -------------------------------------------------------------------------------- /examples/js/personal-data/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/static/favicon.png -------------------------------------------------------------------------------- /examples/js/personal-data/static/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/personal-data/static/loading.gif -------------------------------------------------------------------------------- /examples/js/shopping-list-redux-hoc/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux-hoc/.babelrc -------------------------------------------------------------------------------- /examples/js/shopping-list-redux-hoc/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/js/shopping-list-redux-hoc/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux-hoc/run.js -------------------------------------------------------------------------------- /examples/js/shopping-list-redux/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux/.babelrc -------------------------------------------------------------------------------- /examples/js/shopping-list-redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux/.gitignore -------------------------------------------------------------------------------- /examples/js/shopping-list-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux/README.md -------------------------------------------------------------------------------- /examples/js/shopping-list-redux/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/js/shopping-list-redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux/package.json -------------------------------------------------------------------------------- /examples/js/shopping-list-redux/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list-redux/run.js -------------------------------------------------------------------------------- /examples/js/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/.babelrc -------------------------------------------------------------------------------- /examples/js/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/.gitignore -------------------------------------------------------------------------------- /examples/js/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/README.md -------------------------------------------------------------------------------- /examples/js/shopping-list/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/client/index.js -------------------------------------------------------------------------------- /examples/js/shopping-list/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/client/routes.js -------------------------------------------------------------------------------- /examples/js/shopping-list/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/config.app.js -------------------------------------------------------------------------------- /examples/js/shopping-list/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/config.cloud.js -------------------------------------------------------------------------------- /examples/js/shopping-list/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/config.dev.js -------------------------------------------------------------------------------- /examples/js/shopping-list/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/config.prod.js -------------------------------------------------------------------------------- /examples/js/shopping-list/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/js/shopping-list/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/jest.config.js -------------------------------------------------------------------------------- /examples/js/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/package.json -------------------------------------------------------------------------------- /examples/js/shopping-list/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/run.js -------------------------------------------------------------------------------- /examples/js/shopping-list/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/static/favicon.ico -------------------------------------------------------------------------------- /examples/js/shopping-list/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/static/favicon.png -------------------------------------------------------------------------------- /examples/js/shopping-list/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/static/fb-logo.png -------------------------------------------------------------------------------- /examples/js/shopping-list/static/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/static/logout.svg -------------------------------------------------------------------------------- /examples/js/shopping-list/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/js/shopping-list/static/style.css -------------------------------------------------------------------------------- /examples/ts/hacker-news/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/.babelrc -------------------------------------------------------------------------------- /examples/ts/hacker-news/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/.gitignore -------------------------------------------------------------------------------- /examples/ts/hacker-news/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/.prettierignore -------------------------------------------------------------------------------- /examples/ts/hacker-news/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/.testcaferc.json -------------------------------------------------------------------------------- /examples/ts/hacker-news/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/Dockerfile -------------------------------------------------------------------------------- /examples/ts/hacker-news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/README.md -------------------------------------------------------------------------------- /examples/ts/hacker-news/auth/jwt-secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/auth/jwt-secret.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/client/constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 20 2 | -------------------------------------------------------------------------------- /examples/ts/hacker-news/client/get-redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/client/get-redux.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/client/get-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/client/get-routes.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/client/index.tsx -------------------------------------------------------------------------------- /examples/ts/hacker-news/client/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/client/ssr.tsx -------------------------------------------------------------------------------- /examples/ts/hacker-news/client/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/client/types.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/config.app.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/config.cloud.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/config.dev.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/config.dev.common.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/config.dev.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/config.docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/config.docker.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/config.prod.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/data-replica/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/ts/hacker-news/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/ts/hacker-news/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/docker-compose.yml -------------------------------------------------------------------------------- /examples/ts/hacker-news/import/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/import/api.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/import/importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/import/importer.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/import/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/import/index.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/jest.config.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/package.json -------------------------------------------------------------------------------- /examples/ts/hacker-news/run-e2e-docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/run-e2e-docker.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/run.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/static/favicon.ico -------------------------------------------------------------------------------- /examples/ts/hacker-news/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/static/favicon.png -------------------------------------------------------------------------------- /examples/ts/hacker-news/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/static/style.css -------------------------------------------------------------------------------- /examples/ts/hacker-news/test/e2e/1.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/test/e2e/1.user.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/test/e2e/2.story.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/test/e2e/2.story.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/test/e2e/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/test/e2e/utils.ts -------------------------------------------------------------------------------- /examples/ts/hacker-news/test/unit/jest-setup.ts: -------------------------------------------------------------------------------- 1 | jest.spyOn(console, 'warn').mockImplementation(void 0) 2 | -------------------------------------------------------------------------------- /examples/ts/hacker-news/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/tsconfig.json -------------------------------------------------------------------------------- /examples/ts/hacker-news/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/hacker-news/types.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/.babelrc -------------------------------------------------------------------------------- /examples/ts/personal-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/.gitignore -------------------------------------------------------------------------------- /examples/ts/personal-data/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/.testcaferc.json -------------------------------------------------------------------------------- /examples/ts/personal-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/README.md -------------------------------------------------------------------------------- /examples/ts/personal-data/auth/jwt-secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/auth/jwt-secret.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/client/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/client/context.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/client/index.tsx -------------------------------------------------------------------------------- /examples/ts/personal-data/client/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/client/routes.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/common/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/common/errors.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/common/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/common/jwt.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/config.app.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/config.cloud.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/config.dev.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/config.prod.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/ts/personal-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/package.json -------------------------------------------------------------------------------- /examples/ts/personal-data/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/run.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/static/favicon.ico -------------------------------------------------------------------------------- /examples/ts/personal-data/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/static/favicon.png -------------------------------------------------------------------------------- /examples/ts/personal-data/static/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/static/loading.gif -------------------------------------------------------------------------------- /examples/ts/personal-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/tsconfig.json -------------------------------------------------------------------------------- /examples/ts/personal-data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/personal-data/types.ts -------------------------------------------------------------------------------- /examples/ts/personal-data/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-fileupload-progress' 2 | -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux-hoc/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux-hoc/.babelrc -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux-hoc/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux-hoc/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux-hoc/run.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux-hoc/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux-hoc/types.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux/.babelrc -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux/.gitignore -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux/README.md -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux/package.json -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux/run.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list-redux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list-redux/types.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/.babelrc -------------------------------------------------------------------------------- /examples/ts/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/.gitignore -------------------------------------------------------------------------------- /examples/ts/shopping-list/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/.testcaferc.json -------------------------------------------------------------------------------- /examples/ts/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/README.md -------------------------------------------------------------------------------- /examples/ts/shopping-list/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/client/index.tsx -------------------------------------------------------------------------------- /examples/ts/shopping-list/client/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/client/routes.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/config.app.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/config.cloud.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/config.dev.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/config.prod.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/ts/shopping-list/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/jest.config.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/package.json -------------------------------------------------------------------------------- /examples/ts/shopping-list/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/run.ts -------------------------------------------------------------------------------- /examples/ts/shopping-list/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/static/favicon.ico -------------------------------------------------------------------------------- /examples/ts/shopping-list/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/static/favicon.png -------------------------------------------------------------------------------- /examples/ts/shopping-list/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/static/fb-logo.png -------------------------------------------------------------------------------- /examples/ts/shopping-list/static/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/static/logout.svg -------------------------------------------------------------------------------- /examples/ts/shopping-list/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/static/style.css -------------------------------------------------------------------------------- /examples/ts/shopping-list/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/tsconfig.json -------------------------------------------------------------------------------- /examples/ts/shopping-list/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/examples/ts/shopping-list/types.ts -------------------------------------------------------------------------------- /functional-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/.gitignore -------------------------------------------------------------------------------- /functional-tests/api/benchmark.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/api/benchmark.test.ts -------------------------------------------------------------------------------- /functional-tests/api/monitoring.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/api/monitoring.test.ts -------------------------------------------------------------------------------- /functional-tests/api/saga.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/api/saga.test.ts -------------------------------------------------------------------------------- /functional-tests/api/scheduler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/api/scheduler.test.ts -------------------------------------------------------------------------------- /functional-tests/app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/.babelrc -------------------------------------------------------------------------------- /functional-tests/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/.gitignore -------------------------------------------------------------------------------- /functional-tests/app/auth/create-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/auth/create-strategy.js -------------------------------------------------------------------------------- /functional-tests/app/auth/jwt-secret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/auth/jwt-secret.js -------------------------------------------------------------------------------- /functional-tests/app/client/hoc/get-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/hoc/get-redux.js -------------------------------------------------------------------------------- /functional-tests/app/client/hoc/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/hoc/routes.js -------------------------------------------------------------------------------- /functional-tests/app/client/hooks/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/hooks/context.js -------------------------------------------------------------------------------- /functional-tests/app/client/hooks/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/hooks/routes.js -------------------------------------------------------------------------------- /functional-tests/app/client/index-hoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/index-hoc.js -------------------------------------------------------------------------------- /functional-tests/app/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/index.js -------------------------------------------------------------------------------- /functional-tests/app/client/ssr-hoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/client/ssr-hoc.js -------------------------------------------------------------------------------- /functional-tests/app/common/constants.js: -------------------------------------------------------------------------------- 1 | export const authSecret = '*SECRET*' 2 | -------------------------------------------------------------------------------- /functional-tests/app/common/event-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/common/event-types.js -------------------------------------------------------------------------------- /functional-tests/app/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/config.app.js -------------------------------------------------------------------------------- /functional-tests/app/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/config.cloud.js -------------------------------------------------------------------------------- /functional-tests/app/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/config.dev.js -------------------------------------------------------------------------------- /functional-tests/app/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/config.prod.js -------------------------------------------------------------------------------- /functional-tests/app/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /functional-tests/app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/jest.config.js -------------------------------------------------------------------------------- /functional-tests/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/package.json -------------------------------------------------------------------------------- /functional-tests/app/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/run.js -------------------------------------------------------------------------------- /functional-tests/app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/static/favicon.ico -------------------------------------------------------------------------------- /functional-tests/app/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/static/favicon.png -------------------------------------------------------------------------------- /functional-tests/app/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/static/fb-logo.png -------------------------------------------------------------------------------- /functional-tests/app/static/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/static/github-logo.png -------------------------------------------------------------------------------- /functional-tests/app/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/static/resolve-logo.png -------------------------------------------------------------------------------- /functional-tests/app/static/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/static/twitter-logo.png -------------------------------------------------------------------------------- /functional-tests/app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/app/webpack.config.js -------------------------------------------------------------------------------- /functional-tests/jest.config-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/jest.config-api.js -------------------------------------------------------------------------------- /functional-tests/jest.transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/jest.transform.js -------------------------------------------------------------------------------- /functional-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/package.json -------------------------------------------------------------------------------- /functional-tests/scripts/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/scripts/run.ts -------------------------------------------------------------------------------- /functional-tests/testcafe/hoc/hoc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/testcafe/hoc/hoc.test.ts -------------------------------------------------------------------------------- /functional-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/tsconfig.json -------------------------------------------------------------------------------- /functional-tests/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/utils/constants.ts -------------------------------------------------------------------------------- /functional-tests/utils/generateEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/utils/generateEvents.ts -------------------------------------------------------------------------------- /functional-tests/utils/test-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/utils/test-file.png -------------------------------------------------------------------------------- /functional-tests/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/functional-tests/utils/utils.ts -------------------------------------------------------------------------------- /internal/babel-compile/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/babel-compile/bin/index.js -------------------------------------------------------------------------------- /internal/babel-compile/bin/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/babel-compile/bin/prepare.js -------------------------------------------------------------------------------- /internal/babel-compile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/babel-compile/package.json -------------------------------------------------------------------------------- /internal/build-packages/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/build-packages/bin/index.js -------------------------------------------------------------------------------- /internal/build-packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/build-packages/package.json -------------------------------------------------------------------------------- /internal/cra-test/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/cra-test/bin/index.js -------------------------------------------------------------------------------- /internal/cra-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/cra-test/package.json -------------------------------------------------------------------------------- /internal/helpers/create-profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/create-profiler.js -------------------------------------------------------------------------------- /internal/helpers/get-babel-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/get-babel-config.js -------------------------------------------------------------------------------- /internal/helpers/get-compile-configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/get-compile-configs.js -------------------------------------------------------------------------------- /internal/helpers/get-repo-root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/get-repo-root.js -------------------------------------------------------------------------------- /internal/helpers/get-resolve-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/get-resolve-dir.js -------------------------------------------------------------------------------- /internal/helpers/get-resolve-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/get-resolve-examples.js -------------------------------------------------------------------------------- /internal/helpers/get-resolve-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/get-resolve-packages.js -------------------------------------------------------------------------------- /internal/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/index.js -------------------------------------------------------------------------------- /internal/helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/package.json -------------------------------------------------------------------------------- /internal/helpers/patch-package-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/patch-package-json.js -------------------------------------------------------------------------------- /internal/helpers/prepare-build-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/prepare-build-registry.js -------------------------------------------------------------------------------- /internal/helpers/safe-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/helpers/safe-name.js -------------------------------------------------------------------------------- /internal/local-registry/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/local-registry/bin/index.js -------------------------------------------------------------------------------- /internal/local-registry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/local-registry/package.json -------------------------------------------------------------------------------- /internal/root-yarn/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/root-yarn/bin/index.js -------------------------------------------------------------------------------- /internal/root-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/root-yarn/package.json -------------------------------------------------------------------------------- /internal/use-local-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/use-local-registry/README.md -------------------------------------------------------------------------------- /internal/use-local-registry/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/use-local-registry/bin/index.js -------------------------------------------------------------------------------- /internal/use-local-registry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/use-local-registry/package.json -------------------------------------------------------------------------------- /internal/workspaces/bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/workspaces/bin/index.js -------------------------------------------------------------------------------- /internal/workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/internal/workspaces/package.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/jest.transform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/package.json -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/README.md -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/client/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | types 3 | src/*.d.ts 4 | -------------------------------------------------------------------------------- /packages/core/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/README.md -------------------------------------------------------------------------------- /packages/core/client/jest.func-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/jest.func-config.js -------------------------------------------------------------------------------- /packages/core/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/package.json -------------------------------------------------------------------------------- /packages/core/client/src/assertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/assertions.ts -------------------------------------------------------------------------------- /packages/core/client/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/client.ts -------------------------------------------------------------------------------- /packages/core/client/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/context.ts -------------------------------------------------------------------------------- /packages/core/client/src/determine-origin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/determine-origin.ts -------------------------------------------------------------------------------- /packages/core/client/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/errors.ts -------------------------------------------------------------------------------- /packages/core/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/index.ts -------------------------------------------------------------------------------- /packages/core/client/src/jwt-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/jwt-provider.ts -------------------------------------------------------------------------------- /packages/core/client/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/middleware.ts -------------------------------------------------------------------------------- /packages/core/client/src/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/request.ts -------------------------------------------------------------------------------- /packages/core/client/src/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/subscribe.ts -------------------------------------------------------------------------------- /packages/core/client/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/types.ts -------------------------------------------------------------------------------- /packages/core/client/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/src/utils.ts -------------------------------------------------------------------------------- /packages/core/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/tsconfig.json -------------------------------------------------------------------------------- /packages/core/client/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/tsconfig.prod.json -------------------------------------------------------------------------------- /packages/core/client/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/client/typings/global.d.ts -------------------------------------------------------------------------------- /packages/core/core/.gitignore: -------------------------------------------------------------------------------- 1 | !src/types -------------------------------------------------------------------------------- /packages/core/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/README.md -------------------------------------------------------------------------------- /packages/core/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/package.json -------------------------------------------------------------------------------- /packages/core/core/src/aggregate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/aggregate/types.ts -------------------------------------------------------------------------------- /packages/core/core/src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/browser.ts -------------------------------------------------------------------------------- /packages/core/core/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/errors.ts -------------------------------------------------------------------------------- /packages/core/core/src/get-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/get-log.ts -------------------------------------------------------------------------------- /packages/core/core/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/helpers.ts -------------------------------------------------------------------------------- /packages/core/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/core/src/interop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/interop.ts -------------------------------------------------------------------------------- /packages/core/core/src/read-model/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/read-model/types.ts -------------------------------------------------------------------------------- /packages/core/core/src/runtime-envs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/runtime-envs.ts -------------------------------------------------------------------------------- /packages/core/core/src/saga/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/saga/constants.ts -------------------------------------------------------------------------------- /packages/core/core/src/saga/saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/saga/saga.ts -------------------------------------------------------------------------------- /packages/core/core/src/saga/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/saga/types.ts -------------------------------------------------------------------------------- /packages/core/core/src/saga/validate-saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/saga/validate-saga.ts -------------------------------------------------------------------------------- /packages/core/core/src/symbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/symbols.ts -------------------------------------------------------------------------------- /packages/core/core/src/types/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/types/core.ts -------------------------------------------------------------------------------- /packages/core/core/src/types/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/types/runtime.ts -------------------------------------------------------------------------------- /packages/core/core/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/utils.ts -------------------------------------------------------------------------------- /packages/core/core/src/view-model/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/src/view-model/types.ts -------------------------------------------------------------------------------- /packages/core/core/test/helpers.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/test/helpers.unit.test.ts -------------------------------------------------------------------------------- /packages/core/core/test/utils.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/test/utils.unit.test.ts -------------------------------------------------------------------------------- /packages/core/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/core/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/core/tsconfig.prod.json -------------------------------------------------------------------------------- /packages/core/create-resolve-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/create-resolve-app/README.md -------------------------------------------------------------------------------- /packages/core/debug-levels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/debug-levels/README.md -------------------------------------------------------------------------------- /packages/core/debug-levels/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/debug-levels/package.json -------------------------------------------------------------------------------- /packages/core/debug-levels/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/debug-levels/src/index.ts -------------------------------------------------------------------------------- /packages/core/debug-levels/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/debug-levels/tsconfig.json -------------------------------------------------------------------------------- /packages/core/react-hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/README.md -------------------------------------------------------------------------------- /packages/core/react-hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/package.json -------------------------------------------------------------------------------- /packages/core/react-hooks/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/src/context.ts -------------------------------------------------------------------------------- /packages/core/react-hooks/src/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/src/generic.ts -------------------------------------------------------------------------------- /packages/core/react-hooks/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/src/index.ts -------------------------------------------------------------------------------- /packages/core/react-hooks/src/use-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/src/use-client.ts -------------------------------------------------------------------------------- /packages/core/react-hooks/src/use-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/src/use-command.ts -------------------------------------------------------------------------------- /packages/core/react-hooks/src/use-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/src/use-query.ts -------------------------------------------------------------------------------- /packages/core/react-hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/tsconfig.json -------------------------------------------------------------------------------- /packages/core/react-hooks/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/react-hooks/tsconfig.prod.json -------------------------------------------------------------------------------- /packages/core/redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/README.md -------------------------------------------------------------------------------- /packages/core/redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/package.json -------------------------------------------------------------------------------- /packages/core/redux/src/command/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/command/actions.ts -------------------------------------------------------------------------------- /packages/core/redux/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/helpers.ts -------------------------------------------------------------------------------- /packages/core/redux/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/index.ts -------------------------------------------------------------------------------- /packages/core/redux/src/internal/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/internal/actions.ts -------------------------------------------------------------------------------- /packages/core/redux/src/internal/get-hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/internal/get-hash.ts -------------------------------------------------------------------------------- /packages/core/redux/src/root-saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/root-saga.ts -------------------------------------------------------------------------------- /packages/core/redux/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/src/types.ts -------------------------------------------------------------------------------- /packages/core/redux/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/tsconfig.json -------------------------------------------------------------------------------- /packages/core/redux/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/core/redux/tsconfig.prod.json -------------------------------------------------------------------------------- /packages/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/README.md -------------------------------------------------------------------------------- /packages/modules/module-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-admin/README.md -------------------------------------------------------------------------------- /packages/modules/module-admin/bin/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/cli') 4 | -------------------------------------------------------------------------------- /packages/modules/module-admin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-admin/index.d.ts -------------------------------------------------------------------------------- /packages/modules/module-admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-admin/package.json -------------------------------------------------------------------------------- /packages/modules/module-admin/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-admin/src/cli.js -------------------------------------------------------------------------------- /packages/modules/module-admin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-admin/src/index.js -------------------------------------------------------------------------------- /packages/modules/module-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-auth/README.md -------------------------------------------------------------------------------- /packages/modules/module-auth/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-auth/index.d.ts -------------------------------------------------------------------------------- /packages/modules/module-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-auth/package.json -------------------------------------------------------------------------------- /packages/modules/module-auth/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-auth/src/index.js -------------------------------------------------------------------------------- /packages/modules/module-auth/test/index.test.js: -------------------------------------------------------------------------------- 1 | test('Add tests for @resolve-js/module-auth', async () => {}) 2 | -------------------------------------------------------------------------------- /packages/modules/module-comments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-comments/README.md -------------------------------------------------------------------------------- /packages/modules/module-comments/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-comments/index.d.ts -------------------------------------------------------------------------------- /packages/modules/module-uploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-uploader/README.md -------------------------------------------------------------------------------- /packages/modules/module-uploader/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/modules/module-uploader/index.d.ts -------------------------------------------------------------------------------- /packages/runtime/adapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/runtime/adapters/README.md -------------------------------------------------------------------------------- /packages/runtime/adapters/eventstore-adapters/eventstore-lite/src/__mocks__/fs.ts: -------------------------------------------------------------------------------- 1 | const fs = {} 2 | export default fs 3 | -------------------------------------------------------------------------------- /packages/runtime/adapters/eventstore-adapters/eventstore-lite/src/__mocks__/os.ts: -------------------------------------------------------------------------------- 1 | const os = {} 2 | export default os 3 | -------------------------------------------------------------------------------- /packages/runtime/adapters/eventstore-adapters/eventstore-lite/src/constants.ts: -------------------------------------------------------------------------------- 1 | export const AGGREGATE_ID_SQL_TYPE = 'VARCHAR(700)' 2 | -------------------------------------------------------------------------------- /packages/runtime/runtimes/runtime-aws-serverless/compile-time.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/compile-time') 2 | -------------------------------------------------------------------------------- /packages/runtime/runtimes/runtime-base/test/index.test.ts: -------------------------------------------------------------------------------- 1 | test('ok', () => { 2 | expect(true).toBeTruthy() 3 | }) 4 | -------------------------------------------------------------------------------- /packages/runtime/runtimes/runtime-single-process/compile-time.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/compile-time') 2 | -------------------------------------------------------------------------------- /packages/tools/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/README.md -------------------------------------------------------------------------------- /packages/tools/scripts/configs/env.list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/configs/env.list.json -------------------------------------------------------------------------------- /packages/tools/scripts/configs/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/configs/message.json -------------------------------------------------------------------------------- /packages/tools/scripts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/index.d.ts -------------------------------------------------------------------------------- /packages/tools/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/package.json -------------------------------------------------------------------------------- /packages/tools/scripts/src/build_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/build_mode.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/constants.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/detect_errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/detect_errors.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/get-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/get-log.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/index.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/merge.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/open_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/open_browser.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/prepare_urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/prepare_urls.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/reset_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/reset_mode.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/run_testcafe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/run_testcafe.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/start_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/start_mode.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/use_yarn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/use_yarn.js -------------------------------------------------------------------------------- /packages/tools/scripts/src/watch_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/src/watch_mode.js -------------------------------------------------------------------------------- /packages/tools/scripts/test/alias/files/testClientIndex.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/tools/scripts/test/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/scripts/test/config.test.js -------------------------------------------------------------------------------- /packages/tools/testing-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/testing-tools/README.md -------------------------------------------------------------------------------- /packages/tools/testing-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/testing-tools/package.json -------------------------------------------------------------------------------- /packages/tools/testing-tools/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/testing-tools/src/index.ts -------------------------------------------------------------------------------- /packages/tools/testing-tools/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/testing-tools/src/types.ts -------------------------------------------------------------------------------- /packages/tools/testing-tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/packages/tools/testing-tools/tsconfig.json -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/js/postcss/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/.babelrc -------------------------------------------------------------------------------- /templates/js/postcss/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/.gitignore -------------------------------------------------------------------------------- /templates/js/postcss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/README.md -------------------------------------------------------------------------------- /templates/js/postcss/client/get-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/client/get-routes.js -------------------------------------------------------------------------------- /templates/js/postcss/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/client/index.js -------------------------------------------------------------------------------- /templates/js/postcss/client/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/client/ssr.js -------------------------------------------------------------------------------- /templates/js/postcss/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/config.app.js -------------------------------------------------------------------------------- /templates/js/postcss/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/config.cloud.js -------------------------------------------------------------------------------- /templates/js/postcss/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/config.dev.js -------------------------------------------------------------------------------- /templates/js/postcss/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/config.prod.js -------------------------------------------------------------------------------- /templates/js/postcss/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/js/postcss/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/jest.config.js -------------------------------------------------------------------------------- /templates/js/postcss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/package.json -------------------------------------------------------------------------------- /templates/js/postcss/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/run.js -------------------------------------------------------------------------------- /templates/js/postcss/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/static/favicon.ico -------------------------------------------------------------------------------- /templates/js/postcss/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/static/favicon.png -------------------------------------------------------------------------------- /templates/js/postcss/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/static/fb-logo.png -------------------------------------------------------------------------------- /templates/js/postcss/static/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/static/github-logo.png -------------------------------------------------------------------------------- /templates/js/postcss/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/js/postcss/static/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/static/twitter-logo.png -------------------------------------------------------------------------------- /templates/js/postcss/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/postcss/test/e2e/index.test.js -------------------------------------------------------------------------------- /templates/js/react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/.babelrc -------------------------------------------------------------------------------- /templates/js/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/.gitignore -------------------------------------------------------------------------------- /templates/js/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/README.md -------------------------------------------------------------------------------- /templates/js/react/client/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/client/containers/App.js -------------------------------------------------------------------------------- /templates/js/react/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/client/index.js -------------------------------------------------------------------------------- /templates/js/react/common/event-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/common/event-types.js -------------------------------------------------------------------------------- /templates/js/react/common/types.js: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /templates/js/react/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/config.adjust-webpack.js -------------------------------------------------------------------------------- /templates/js/react/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/config.app.js -------------------------------------------------------------------------------- /templates/js/react/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/config.cloud.js -------------------------------------------------------------------------------- /templates/js/react/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/config.dev.js -------------------------------------------------------------------------------- /templates/js/react/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/config.prod.js -------------------------------------------------------------------------------- /templates/js/react/config.test-functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/config.test-functional.js -------------------------------------------------------------------------------- /templates/js/react/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/js/react/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/jest.config.js -------------------------------------------------------------------------------- /templates/js/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/package.json -------------------------------------------------------------------------------- /templates/js/react/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/run.js -------------------------------------------------------------------------------- /templates/js/react/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/static/bootstrap.min.css -------------------------------------------------------------------------------- /templates/js/react/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/static/favicon.ico -------------------------------------------------------------------------------- /templates/js/react/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/static/favicon.png -------------------------------------------------------------------------------- /templates/js/react/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/js/react/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/static/style.css -------------------------------------------------------------------------------- /templates/js/react/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/react/test/e2e/index.test.js -------------------------------------------------------------------------------- /templates/js/styled-components/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/.babelrc -------------------------------------------------------------------------------- /templates/js/styled-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/.gitignore -------------------------------------------------------------------------------- /templates/js/styled-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/README.md -------------------------------------------------------------------------------- /templates/js/styled-components/client/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/client/ssr.js -------------------------------------------------------------------------------- /templates/js/styled-components/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/config.app.js -------------------------------------------------------------------------------- /templates/js/styled-components/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/config.dev.js -------------------------------------------------------------------------------- /templates/js/styled-components/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/js/styled-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/package.json -------------------------------------------------------------------------------- /templates/js/styled-components/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/styled-components/run.js -------------------------------------------------------------------------------- /templates/js/vanilla/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/.babelrc -------------------------------------------------------------------------------- /templates/js/vanilla/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/.gitignore -------------------------------------------------------------------------------- /templates/js/vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/README.md -------------------------------------------------------------------------------- /templates/js/vanilla/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/client/index.js -------------------------------------------------------------------------------- /templates/js/vanilla/client/init-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/client/init-ui.js -------------------------------------------------------------------------------- /templates/js/vanilla/client/update-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/client/update-ui.js -------------------------------------------------------------------------------- /templates/js/vanilla/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/config.app.js -------------------------------------------------------------------------------- /templates/js/vanilla/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/config.cloud.js -------------------------------------------------------------------------------- /templates/js/vanilla/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/config.dev.js -------------------------------------------------------------------------------- /templates/js/vanilla/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/js/vanilla/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/package.json -------------------------------------------------------------------------------- /templates/js/vanilla/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/run.js -------------------------------------------------------------------------------- /templates/js/vanilla/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/static/favicon.png -------------------------------------------------------------------------------- /templates/js/vanilla/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/static/style.css -------------------------------------------------------------------------------- /templates/js/vanilla/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vanilla/test/e2e/index.test.js -------------------------------------------------------------------------------- /templates/js/vue/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/.babelrc -------------------------------------------------------------------------------- /templates/js/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/.gitignore -------------------------------------------------------------------------------- /templates/js/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/README.md -------------------------------------------------------------------------------- /templates/js/vue/client/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/client/App.vue -------------------------------------------------------------------------------- /templates/js/vue/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/client/index.js -------------------------------------------------------------------------------- /templates/js/vue/client/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/client/ssr.js -------------------------------------------------------------------------------- /templates/js/vue/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/config.adjust-webpack.js -------------------------------------------------------------------------------- /templates/js/vue/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/config.app.js -------------------------------------------------------------------------------- /templates/js/vue/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/config.cloud.js -------------------------------------------------------------------------------- /templates/js/vue/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/config.dev.js -------------------------------------------------------------------------------- /templates/js/vue/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/config.prod.js -------------------------------------------------------------------------------- /templates/js/vue/config.test-functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/config.test-functional.js -------------------------------------------------------------------------------- /templates/js/vue/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/js/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/package.json -------------------------------------------------------------------------------- /templates/js/vue/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/run.js -------------------------------------------------------------------------------- /templates/js/vue/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/static/favicon.png -------------------------------------------------------------------------------- /templates/js/vue/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/static/fb-logo.png -------------------------------------------------------------------------------- /templates/js/vue/static/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/static/github-logo.png -------------------------------------------------------------------------------- /templates/js/vue/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/js/vue/static/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/static/twitter-logo.png -------------------------------------------------------------------------------- /templates/js/vue/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/js/vue/test/e2e/index.test.js -------------------------------------------------------------------------------- /templates/ts/angular/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/.babelrc -------------------------------------------------------------------------------- /templates/ts/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/.gitignore -------------------------------------------------------------------------------- /templates/ts/angular/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/.testcaferc.json -------------------------------------------------------------------------------- /templates/ts/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/README.md -------------------------------------------------------------------------------- /templates/ts/angular/client/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/client/main.ts -------------------------------------------------------------------------------- /templates/ts/angular/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/config.app.ts -------------------------------------------------------------------------------- /templates/ts/angular/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/config.cloud.ts -------------------------------------------------------------------------------- /templates/ts/angular/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/config.dev.ts -------------------------------------------------------------------------------- /templates/ts/angular/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/config.prod.ts -------------------------------------------------------------------------------- /templates/ts/angular/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/ts/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/package.json -------------------------------------------------------------------------------- /templates/ts/angular/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/run.ts -------------------------------------------------------------------------------- /templates/ts/angular/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/static/favicon.png -------------------------------------------------------------------------------- /templates/ts/angular/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/static/fb-logo.png -------------------------------------------------------------------------------- /templates/ts/angular/static/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/static/github-logo.png -------------------------------------------------------------------------------- /templates/ts/angular/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/ts/angular/static/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/static/twitter-logo.png -------------------------------------------------------------------------------- /templates/ts/angular/test/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/test/e2e/index.test.ts -------------------------------------------------------------------------------- /templates/ts/angular/test/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/test/e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/angular/tsconfig.client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/tsconfig.client.json -------------------------------------------------------------------------------- /templates/ts/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/angular/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/postcss/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/.babelrc -------------------------------------------------------------------------------- /templates/ts/postcss/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/.gitignore -------------------------------------------------------------------------------- /templates/ts/postcss/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/.testcaferc.json -------------------------------------------------------------------------------- /templates/ts/postcss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/README.md -------------------------------------------------------------------------------- /templates/ts/postcss/client/get-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/client/get-routes.ts -------------------------------------------------------------------------------- /templates/ts/postcss/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/client/index.tsx -------------------------------------------------------------------------------- /templates/ts/postcss/client/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/client/ssr.tsx -------------------------------------------------------------------------------- /templates/ts/postcss/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/config.app.ts -------------------------------------------------------------------------------- /templates/ts/postcss/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/config.cloud.ts -------------------------------------------------------------------------------- /templates/ts/postcss/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/config.dev.ts -------------------------------------------------------------------------------- /templates/ts/postcss/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/config.prod.ts -------------------------------------------------------------------------------- /templates/ts/postcss/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/ts/postcss/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/jest.config.ts -------------------------------------------------------------------------------- /templates/ts/postcss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/package.json -------------------------------------------------------------------------------- /templates/ts/postcss/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/run.ts -------------------------------------------------------------------------------- /templates/ts/postcss/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/static/favicon.ico -------------------------------------------------------------------------------- /templates/ts/postcss/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/static/favicon.png -------------------------------------------------------------------------------- /templates/ts/postcss/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/static/fb-logo.png -------------------------------------------------------------------------------- /templates/ts/postcss/static/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/static/github-logo.png -------------------------------------------------------------------------------- /templates/ts/postcss/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/ts/postcss/static/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/static/twitter-logo.png -------------------------------------------------------------------------------- /templates/ts/postcss/test/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/test/e2e/index.test.ts -------------------------------------------------------------------------------- /templates/ts/postcss/test/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/test/e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/postcss/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/postcss/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/postcss/typings.d.ts -------------------------------------------------------------------------------- /templates/ts/react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/.babelrc -------------------------------------------------------------------------------- /templates/ts/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/.gitignore -------------------------------------------------------------------------------- /templates/ts/react/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/.testcaferc.json -------------------------------------------------------------------------------- /templates/ts/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/README.md -------------------------------------------------------------------------------- /templates/ts/react/client/containers/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/client/containers/App.tsx -------------------------------------------------------------------------------- /templates/ts/react/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/client/index.tsx -------------------------------------------------------------------------------- /templates/ts/react/common/event-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/common/event-types.ts -------------------------------------------------------------------------------- /templates/ts/react/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/common/types.ts -------------------------------------------------------------------------------- /templates/ts/react/config.adjust-webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/config.adjust-webpack.ts -------------------------------------------------------------------------------- /templates/ts/react/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/config.app.ts -------------------------------------------------------------------------------- /templates/ts/react/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/config.cloud.ts -------------------------------------------------------------------------------- /templates/ts/react/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/config.dev.ts -------------------------------------------------------------------------------- /templates/ts/react/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/config.prod.ts -------------------------------------------------------------------------------- /templates/ts/react/config.test-functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/config.test-functional.ts -------------------------------------------------------------------------------- /templates/ts/react/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/ts/react/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/jest.config.ts -------------------------------------------------------------------------------- /templates/ts/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/package.json -------------------------------------------------------------------------------- /templates/ts/react/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/run.ts -------------------------------------------------------------------------------- /templates/ts/react/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/static/bootstrap.min.css -------------------------------------------------------------------------------- /templates/ts/react/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/static/favicon.ico -------------------------------------------------------------------------------- /templates/ts/react/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/static/favicon.png -------------------------------------------------------------------------------- /templates/ts/react/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/ts/react/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/static/style.css -------------------------------------------------------------------------------- /templates/ts/react/test/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/test/e2e/index.test.ts -------------------------------------------------------------------------------- /templates/ts/react/test/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/test/e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/react/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/styled-components/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/.babelrc -------------------------------------------------------------------------------- /templates/ts/styled-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/.gitignore -------------------------------------------------------------------------------- /templates/ts/styled-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/README.md -------------------------------------------------------------------------------- /templates/ts/styled-components/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/config.app.ts -------------------------------------------------------------------------------- /templates/ts/styled-components/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/config.dev.ts -------------------------------------------------------------------------------- /templates/ts/styled-components/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/ts/styled-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/package.json -------------------------------------------------------------------------------- /templates/ts/styled-components/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/run.ts -------------------------------------------------------------------------------- /templates/ts/styled-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/styled-components/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/vanilla/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/.babelrc -------------------------------------------------------------------------------- /templates/ts/vanilla/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/.gitignore -------------------------------------------------------------------------------- /templates/ts/vanilla/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/.testcaferc.json -------------------------------------------------------------------------------- /templates/ts/vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/README.md -------------------------------------------------------------------------------- /templates/ts/vanilla/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/client/index.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/client/init-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/client/init-ui.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/client/update-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/client/update-ui.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/config.app.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/config.cloud.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/config.dev.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/ts/vanilla/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/package.json -------------------------------------------------------------------------------- /templates/ts/vanilla/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/run.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/static/favicon.png -------------------------------------------------------------------------------- /templates/ts/vanilla/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/static/style.css -------------------------------------------------------------------------------- /templates/ts/vanilla/test/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/test/e2e/index.test.ts -------------------------------------------------------------------------------- /templates/ts/vanilla/test/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/test/e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/vanilla/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/vanilla/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vanilla/types.ts -------------------------------------------------------------------------------- /templates/ts/vue/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/.babelrc -------------------------------------------------------------------------------- /templates/ts/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/.gitignore -------------------------------------------------------------------------------- /templates/ts/vue/.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/.testcaferc.json -------------------------------------------------------------------------------- /templates/ts/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/README.md -------------------------------------------------------------------------------- /templates/ts/vue/client/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/client/App.vue -------------------------------------------------------------------------------- /templates/ts/vue/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/client/index.ts -------------------------------------------------------------------------------- /templates/ts/vue/client/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/client/ssr.ts -------------------------------------------------------------------------------- /templates/ts/vue/config.adjust-webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/config.adjust-webpack.ts -------------------------------------------------------------------------------- /templates/ts/vue/config.app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/config.app.ts -------------------------------------------------------------------------------- /templates/ts/vue/config.cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/config.cloud.ts -------------------------------------------------------------------------------- /templates/ts/vue/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/config.dev.ts -------------------------------------------------------------------------------- /templates/ts/vue/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/config.prod.ts -------------------------------------------------------------------------------- /templates/ts/vue/config.test-functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/config.test-functional.ts -------------------------------------------------------------------------------- /templates/ts/vue/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /templates/ts/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/package.json -------------------------------------------------------------------------------- /templates/ts/vue/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/run.ts -------------------------------------------------------------------------------- /templates/ts/vue/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/static/favicon.png -------------------------------------------------------------------------------- /templates/ts/vue/static/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/static/fb-logo.png -------------------------------------------------------------------------------- /templates/ts/vue/static/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/static/github-logo.png -------------------------------------------------------------------------------- /templates/ts/vue/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/static/resolve-logo.png -------------------------------------------------------------------------------- /templates/ts/vue/static/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/static/twitter-logo.png -------------------------------------------------------------------------------- /templates/ts/vue/test/e2e/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/test/e2e/index.test.ts -------------------------------------------------------------------------------- /templates/ts/vue/test/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/test/e2e/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/tsconfig.json -------------------------------------------------------------------------------- /templates/ts/vue/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/templates/ts/vue/typings.d.ts -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | exported-events.txt 2 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/custom-readmodel-sample/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/custom-readmodel-sample/config.js -------------------------------------------------------------------------------- /tests/custom-readmodel-sample/connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/custom-readmodel-sample/connector.js -------------------------------------------------------------------------------- /tests/custom-readmodel-sample/projection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/custom-readmodel-sample/projection.js -------------------------------------------------------------------------------- /tests/custom-readmodel-sample/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/custom-readmodel-sample/resolvers.js -------------------------------------------------------------------------------- /tests/eventstore-filter-events/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-filter-events/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-init-drop/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-init-drop/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-order-events/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-order-events/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-parallel-save/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-parallel-save/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-replication/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-replication/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-save-load/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-save-load/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-secrets/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-secrets/index.test.ts -------------------------------------------------------------------------------- /tests/eventstore-test-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-test-utils/index.ts -------------------------------------------------------------------------------- /tests/eventstore-timeout/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/eventstore-timeout/index.test.ts -------------------------------------------------------------------------------- /tests/incremental-import/create-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/incremental-import/create-adapter.ts -------------------------------------------------------------------------------- /tests/incremental-import/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/incremental-import/index.test.ts -------------------------------------------------------------------------------- /tests/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/jest.config.js -------------------------------------------------------------------------------- /tests/node-postgres/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/node-postgres/index.test.ts -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/read-model-advanced-sample/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-advanced-sample/config.js -------------------------------------------------------------------------------- /tests/read-model-comments-sample/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-comments-sample/config.js -------------------------------------------------------------------------------- /tests/read-model-store-api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-store-api/config.js -------------------------------------------------------------------------------- /tests/read-model-store-api/count.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-store-api/count.test.js -------------------------------------------------------------------------------- /tests/read-model-store-api/insert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-store-api/insert.test.js -------------------------------------------------------------------------------- /tests/read-model-store-api/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-store-api/resolvers.js -------------------------------------------------------------------------------- /tests/read-model-store-api/upsert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-store-api/upsert.test.js -------------------------------------------------------------------------------- /tests/read-model-stories-sample/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-stories-sample/config.js -------------------------------------------------------------------------------- /tests/read-model-stories-sample/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/read-model-stories-sample/resolvers.js -------------------------------------------------------------------------------- /tests/readmodel-test-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/readmodel-test-utils/index.ts -------------------------------------------------------------------------------- /tests/resolve-scripts-sample/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/resolve-scripts-sample/run.js -------------------------------------------------------------------------------- /tests/saga-mock-side-effects-sample/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/saga-mock-side-effects-sample/saga.js -------------------------------------------------------------------------------- /tests/saga-sample/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/saga-sample/config.js -------------------------------------------------------------------------------- /tests/saga-sample/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/saga-sample/saga.js -------------------------------------------------------------------------------- /tests/saga-sample/saga.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/saga-sample/saga.test.js -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tutorial/lesson-1/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/.babelrc -------------------------------------------------------------------------------- /tutorial/lesson-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/.gitignore -------------------------------------------------------------------------------- /tutorial/lesson-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/README.md -------------------------------------------------------------------------------- /tutorial/lesson-1/common/eventTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/common/eventTypes.js -------------------------------------------------------------------------------- /tutorial/lesson-1/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/config.adjust-webpack.js -------------------------------------------------------------------------------- /tutorial/lesson-1/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/config.app.js -------------------------------------------------------------------------------- /tutorial/lesson-1/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/config.cloud.js -------------------------------------------------------------------------------- /tutorial/lesson-1/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/config.dev.js -------------------------------------------------------------------------------- /tutorial/lesson-1/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/config.prod.js -------------------------------------------------------------------------------- /tutorial/lesson-1/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/lesson-1/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/jest.config.js -------------------------------------------------------------------------------- /tutorial/lesson-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/package.json -------------------------------------------------------------------------------- /tutorial/lesson-1/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/run.js -------------------------------------------------------------------------------- /tutorial/lesson-1/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/static/bootstrap.min.css -------------------------------------------------------------------------------- /tutorial/lesson-1/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/static/favicon.ico -------------------------------------------------------------------------------- /tutorial/lesson-1/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/static/favicon.png -------------------------------------------------------------------------------- /tutorial/lesson-1/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/static/resolve-logo.png -------------------------------------------------------------------------------- /tutorial/lesson-1/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/static/style.css -------------------------------------------------------------------------------- /tutorial/lesson-1/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-1/test/e2e/index.test.js -------------------------------------------------------------------------------- /tutorial/lesson-2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/.babelrc -------------------------------------------------------------------------------- /tutorial/lesson-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/.gitignore -------------------------------------------------------------------------------- /tutorial/lesson-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/README.md -------------------------------------------------------------------------------- /tutorial/lesson-2/common/eventTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/common/eventTypes.js -------------------------------------------------------------------------------- /tutorial/lesson-2/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/config.adjust-webpack.js -------------------------------------------------------------------------------- /tutorial/lesson-2/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/config.app.js -------------------------------------------------------------------------------- /tutorial/lesson-2/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/config.cloud.js -------------------------------------------------------------------------------- /tutorial/lesson-2/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/config.dev.js -------------------------------------------------------------------------------- /tutorial/lesson-2/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/config.prod.js -------------------------------------------------------------------------------- /tutorial/lesson-2/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/lesson-2/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/jest.config.js -------------------------------------------------------------------------------- /tutorial/lesson-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/package.json -------------------------------------------------------------------------------- /tutorial/lesson-2/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/run.js -------------------------------------------------------------------------------- /tutorial/lesson-2/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/static/bootstrap.min.css -------------------------------------------------------------------------------- /tutorial/lesson-2/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/static/favicon.ico -------------------------------------------------------------------------------- /tutorial/lesson-2/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/static/favicon.png -------------------------------------------------------------------------------- /tutorial/lesson-2/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/static/resolve-logo.png -------------------------------------------------------------------------------- /tutorial/lesson-2/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/static/style.css -------------------------------------------------------------------------------- /tutorial/lesson-2/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-2/test/e2e/index.test.js -------------------------------------------------------------------------------- /tutorial/lesson-3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/.babelrc -------------------------------------------------------------------------------- /tutorial/lesson-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/.gitignore -------------------------------------------------------------------------------- /tutorial/lesson-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/README.md -------------------------------------------------------------------------------- /tutorial/lesson-3/client/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/client/components/App.js -------------------------------------------------------------------------------- /tutorial/lesson-3/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/client/index.js -------------------------------------------------------------------------------- /tutorial/lesson-3/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/client/routes.js -------------------------------------------------------------------------------- /tutorial/lesson-3/common/eventTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/common/eventTypes.js -------------------------------------------------------------------------------- /tutorial/lesson-3/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/config.adjust-webpack.js -------------------------------------------------------------------------------- /tutorial/lesson-3/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/config.app.js -------------------------------------------------------------------------------- /tutorial/lesson-3/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/config.cloud.js -------------------------------------------------------------------------------- /tutorial/lesson-3/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/config.dev.js -------------------------------------------------------------------------------- /tutorial/lesson-3/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/config.prod.js -------------------------------------------------------------------------------- /tutorial/lesson-3/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/lesson-3/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/jest.config.js -------------------------------------------------------------------------------- /tutorial/lesson-3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/package.json -------------------------------------------------------------------------------- /tutorial/lesson-3/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/run.js -------------------------------------------------------------------------------- /tutorial/lesson-3/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/static/bootstrap.min.css -------------------------------------------------------------------------------- /tutorial/lesson-3/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/static/favicon.ico -------------------------------------------------------------------------------- /tutorial/lesson-3/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/static/favicon.png -------------------------------------------------------------------------------- /tutorial/lesson-3/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/static/resolve-logo.png -------------------------------------------------------------------------------- /tutorial/lesson-3/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/static/style.css -------------------------------------------------------------------------------- /tutorial/lesson-3/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-3/test/e2e/index.test.js -------------------------------------------------------------------------------- /tutorial/lesson-4/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/.babelrc -------------------------------------------------------------------------------- /tutorial/lesson-4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/.gitignore -------------------------------------------------------------------------------- /tutorial/lesson-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/README.md -------------------------------------------------------------------------------- /tutorial/lesson-4/client/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/client/components/App.js -------------------------------------------------------------------------------- /tutorial/lesson-4/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/client/index.js -------------------------------------------------------------------------------- /tutorial/lesson-4/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/client/routes.js -------------------------------------------------------------------------------- /tutorial/lesson-4/common/eventTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/common/eventTypes.js -------------------------------------------------------------------------------- /tutorial/lesson-4/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/config.adjust-webpack.js -------------------------------------------------------------------------------- /tutorial/lesson-4/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/config.app.js -------------------------------------------------------------------------------- /tutorial/lesson-4/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/config.cloud.js -------------------------------------------------------------------------------- /tutorial/lesson-4/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/config.dev.js -------------------------------------------------------------------------------- /tutorial/lesson-4/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/config.prod.js -------------------------------------------------------------------------------- /tutorial/lesson-4/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/lesson-4/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/jest.config.js -------------------------------------------------------------------------------- /tutorial/lesson-4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/package.json -------------------------------------------------------------------------------- /tutorial/lesson-4/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/run.js -------------------------------------------------------------------------------- /tutorial/lesson-4/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/static/bootstrap.min.css -------------------------------------------------------------------------------- /tutorial/lesson-4/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/static/favicon.ico -------------------------------------------------------------------------------- /tutorial/lesson-4/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/static/favicon.png -------------------------------------------------------------------------------- /tutorial/lesson-4/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/static/resolve-logo.png -------------------------------------------------------------------------------- /tutorial/lesson-4/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/static/style.css -------------------------------------------------------------------------------- /tutorial/lesson-4/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-4/test/e2e/index.test.js -------------------------------------------------------------------------------- /tutorial/lesson-5/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/.babelrc -------------------------------------------------------------------------------- /tutorial/lesson-5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/.gitignore -------------------------------------------------------------------------------- /tutorial/lesson-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/README.md -------------------------------------------------------------------------------- /tutorial/lesson-5/client/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/client/components/App.js -------------------------------------------------------------------------------- /tutorial/lesson-5/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/client/index.js -------------------------------------------------------------------------------- /tutorial/lesson-5/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/client/routes.js -------------------------------------------------------------------------------- /tutorial/lesson-5/common/eventTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/common/eventTypes.js -------------------------------------------------------------------------------- /tutorial/lesson-5/config.adjust-webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/config.adjust-webpack.js -------------------------------------------------------------------------------- /tutorial/lesson-5/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/config.app.js -------------------------------------------------------------------------------- /tutorial/lesson-5/config.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/config.cloud.js -------------------------------------------------------------------------------- /tutorial/lesson-5/config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/config.dev.js -------------------------------------------------------------------------------- /tutorial/lesson-5/config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/config.prod.js -------------------------------------------------------------------------------- /tutorial/lesson-5/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tutorial/lesson-5/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/jest.config.js -------------------------------------------------------------------------------- /tutorial/lesson-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/package.json -------------------------------------------------------------------------------- /tutorial/lesson-5/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/run.js -------------------------------------------------------------------------------- /tutorial/lesson-5/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/static/bootstrap.min.css -------------------------------------------------------------------------------- /tutorial/lesson-5/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/static/favicon.ico -------------------------------------------------------------------------------- /tutorial/lesson-5/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/static/favicon.png -------------------------------------------------------------------------------- /tutorial/lesson-5/static/resolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/static/resolve-logo.png -------------------------------------------------------------------------------- /tutorial/lesson-5/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/static/style.css -------------------------------------------------------------------------------- /tutorial/lesson-5/test/e2e/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/tutorial/lesson-5/test/e2e/index.test.js -------------------------------------------------------------------------------- /validate-lock-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/validate-lock-file.js -------------------------------------------------------------------------------- /website/blog/2018-12-5-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/blog/2018-12-5-welcome.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/src/css/customTheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/src/css/customTheme.css -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/background.png -------------------------------------------------------------------------------- /website/static/img/cqrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/cqrs.png -------------------------------------------------------------------------------- /website/static/img/ddd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/ddd.png -------------------------------------------------------------------------------- /website/static/img/event-sourcing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/event-sourcing.png -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/img/header-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/header-background.svg -------------------------------------------------------------------------------- /website/static/img/reSolve400x400-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/reSolve400x400-fill.png -------------------------------------------------------------------------------- /website/static/img/react-redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/react-redux.png -------------------------------------------------------------------------------- /website/static/img/resolve-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/resolve-light.svg -------------------------------------------------------------------------------- /website/static/img/resolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/resolve.png -------------------------------------------------------------------------------- /website/static/img/resolve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/website/static/img/resolve.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimagined/resolve/HEAD/yarn.lock --------------------------------------------------------------------------------