@things-factory/reference-app 4.0.40 → 4.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/attachments/1aaa7721-7a6c-47fa-a375-b186b82dd3b1.jpeg +0 -0
  2. package/client/components/camera-capturer.js +1 -1
  3. package/client/components/ocr-viewpart.js +1 -1
  4. package/client/editors/id-editor.js +4 -8
  5. package/client/editors/id-selector.js +3 -8
  6. package/client/pages/context-menu-page.js +1 -1
  7. package/client/pages/context-page.js +6 -5
  8. package/client/pages/direct-print.js +1 -1
  9. package/client/pages/ghost-print-page.js +1 -1
  10. package/client/pages/grist-colorizing.js +1 -1
  11. package/client/pages/grist-mode-page.js +1 -1
  12. package/client/pages/grist-page.js +1 -1
  13. package/client/pages/label-scan-page.js +1 -1
  14. package/client/pages/main.js +3 -2
  15. package/client/pages/menu-page.js +6 -5
  16. package/client/pages/notification-page.js +8 -6
  17. package/client/pages/ocr-page.js +1 -1
  18. package/client/pages/pending-job-page.js +6 -4
  19. package/client/pages/reference-page-styles.js +1 -1
  20. package/client/pages/report-page.js +2 -2
  21. package/client/pages/upload-page.js +1 -1
  22. package/db.sqlite +0 -0
  23. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +8 -7
  24. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +8 -22
  25. package/logs/application-2022-01-29-14.log +5 -0
  26. package/logs/application-2022-01-31-02.log +4 -0
  27. package/logs/{connections-2021-11-24-18.log → connections-2022-01-29-14.log} +0 -0
  28. package/logs/{connections-2021-12-06-18.log → connections-2022-01-31-02.log} +0 -0
  29. package/package.json +49 -44
  30. package/logs/application-2022-01-17-14.log +0 -4
  31. package/logs/application-2022-01-17-15.log +0 -4
  32. package/logs/connections-2021-12-06-19.log +0 -0
  33. package/logs/connections-2021-12-07-18.log +0 -0
  34. package/logs/connections-2021-12-08-18.log +0 -0
@@ -1,4 +1,4 @@
1
- import { css, html, LitElement } from 'lit-element'
1
+ import { css, html, LitElement } from 'lit'
2
2
 
3
3
  import { FileDropHelper } from '@things-factory/utils'
4
4
 
@@ -3,7 +3,7 @@ import '@material/mwc-button'
3
3
  import '@operato/ocr/ox-ocr-helper.js'
4
4
 
5
5
  import { gql } from 'graphql-tag'
6
- import { css, html, LitElement } from 'lit-element'
6
+ import { css, html, LitElement } from 'lit'
7
7
 
8
8
  import { client } from '@things-factory/shell'
9
9
 
@@ -1,9 +1,9 @@
1
- import { LitElement, html, css } from 'lit-element'
2
-
3
1
  import '@material/mwc-icon'
2
+ import './id-selector'
3
+
4
+ import { css, html, LitElement } from 'lit'
4
5
 
5
6
  import { openPopup } from '@things-factory/layout-base'
6
- import './id-selector'
7
7
 
8
8
  export class IdEditor extends LitElement {
9
9
  static get properties() {
@@ -57,11 +57,7 @@ export class IdEditor extends LitElement {
57
57
  var value = this.value
58
58
 
59
59
  return html`
60
- ${!value
61
- ? html``
62
- : html`
63
- <span>${value[nameField]} (${value[descriptionField]})</span>
64
- `}
60
+ ${!value ? html`` : html` <span>${value[nameField]} (${value[descriptionField]})</span> `}
65
61
  <mwc-icon>arrow_drop_down</mwc-icon>
66
62
  `
67
63
  }
@@ -1,6 +1,6 @@
1
1
  import '@operato/data-grist'
2
2
 
3
- import { css, html, LitElement } from 'lit-element'
3
+ import { css, html, LitElement } from 'lit'
4
4
 
5
5
  import { MultiColumnFormStyles } from '@things-factory/form-ui'
6
6
  import { i18next } from '@things-factory/i18n-base'
@@ -70,7 +70,7 @@ export class IdSelector extends LitElement {
70
70
  .selectedRecords=${this.selectedRecords}
71
71
  >
72
72
  <div id="filters" slot="headless">
73
- <ox-filters-form @change=${e => this.grist.fetch()}></ox-filters-form>
73
+ <ox-filters-form></ox-filters-form>
74
74
  </div>
75
75
  </ox-grist>
76
76
 
@@ -165,14 +165,9 @@ export class IdSelector extends LitElement {
165
165
  return this.renderRoot.querySelector('ox-grist')
166
166
  }
167
167
 
168
- get filtersForm() {
169
- return this.renderRoot.querySelector('ox-filters-form')
170
- }
171
-
172
- async fetchHandler({ page, limit, sorters = [] }) {
168
+ async fetchHandler({ page, limit, sortings = [], filters = [] }) {
173
169
  var total = 3401
174
170
  var start = (page - 1) * limit
175
- // const filter = await this.filtersForm.getQueryFilters()
176
171
 
177
172
  return {
178
173
  total,
@@ -1,7 +1,7 @@
1
1
  import '@material/mwc-icon'
2
2
  import '@operato/popup/ox-popup-menu.js'
3
3
 
4
- import { css, html } from 'lit-element'
4
+ import { css, html } from 'lit'
5
5
  import { connect } from 'pwa-helpers/connect-mixin.js'
6
6
 
7
7
  import { OxPopupMenu } from '@operato/popup/ox-popup-menu.js'
@@ -2,15 +2,16 @@ import '@material/mwc-textfield'
2
2
  import '@material/mwc-formfield'
3
3
  import '@material/mwc-radio'
4
4
 
5
- import { PageView, store } from '@things-factory/shell'
6
- import { css, html } from 'lit-element'
7
-
8
- import { CommonButtonStyles } from '@things-factory/styles'
5
+ import { css, html } from 'lit'
9
6
  import { connect } from 'pwa-helpers/connect-mixin.js'
7
+
10
8
  import { openImportPopUp } from '@things-factory/import-ui'
11
- import { referencePageStyles } from './reference-page-styles'
9
+ import { PageView, store } from '@things-factory/shell'
10
+ import { CommonButtonStyles } from '@things-factory/styles'
12
11
  import { sleep } from '@things-factory/utils'
13
12
 
13
+ import { referencePageStyles } from './reference-page-styles'
14
+
14
15
  class ContextPage extends connect(store)(PageView) {
15
16
  static get styles() {
16
17
  return [
@@ -1,4 +1,4 @@
1
- import { css, html } from 'lit-element'
1
+ import { css, html } from 'lit'
2
2
  import { connect } from 'pwa-helpers/connect-mixin.js'
3
3
 
4
4
  import { DirectPrinter } from '@things-factory/barcode-base'
@@ -1,4 +1,4 @@
1
- import { css, html } from 'lit-element'
1
+ import { css, html } from 'lit'
2
2
  import { connect } from 'pwa-helpers/connect-mixin.js'
3
3
 
4
4
  import { GhostPrint } from '@operato/ghost-print'
@@ -1,4 +1,4 @@
1
- import { css, html } from 'lit-element'
1
+ import { css, html } from 'lit'
2
2
 
3
3
  import { getEditor, getRenderer } from '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
@@ -1,7 +1,7 @@
1
1
  import '@operato/popup/ox-popup-list.js'
2
2
  import '@operato/data-grist'
3
3
 
4
- import { css, html } from 'lit-element'
4
+ import { css, html } from 'lit'
5
5
 
6
6
  import { i18next, localize } from '@things-factory/i18n-base'
7
7
  import { PageView } from '@things-factory/shell'
@@ -1,4 +1,4 @@
1
- import { css, html } from 'lit-element'
1
+ import { css, html } from 'lit'
2
2
 
3
3
  import { getEditor, getRenderer } from '@operato/data-grist'
4
4
  import { i18next, localize } from '@things-factory/i18n-base'
@@ -1,7 +1,7 @@
1
1
  import '@things-factory/barcode-ui'
2
2
  import '@operato/input/ox-input-barcode.js'
3
3
 
4
- import { css, html } from 'lit-element'
4
+ import { css, html } from 'lit'
5
5
  import { connect } from 'pwa-helpers/connect-mixin.js'
6
6
 
7
7
  import { PageView, store } from '@things-factory/shell'
@@ -1,6 +1,7 @@
1
- import { html, css } from 'lit-element'
1
+ import { css, html } from 'lit'
2
2
  import { connect } from 'pwa-helpers/connect-mixin.js'
3
- import { store, PageView } from '@things-factory/shell'
3
+
4
+ import { PageView, store } from '@things-factory/shell'
4
5
 
5
6
  import logo from '../../assets/images/hatiolab-logo.png'
6
7
 
@@ -1,13 +1,14 @@
1
1
  import '@things-factory/auth-ui' /* for domain-switch */
2
2
  import '@material/mwc-checkbox'
3
3
  import '@material/mwc-formfield'
4
+ import '@operato/help/ox-help-icon.js'
4
5
 
5
- import { css, html } from 'lit-element'
6
+ import { css, html } from 'lit'
6
7
  import { connect } from 'pwa-helpers/connect-mixin.js'
7
8
 
8
- import { VIEWPART_POSITION } from '@things-factory/layout-base'
9
+ import { VIEWPART_POSITION } from '@operato/layout'
10
+ import { PageView, store } from '@operato/shell'
9
11
  import { setupMenuPart } from '@things-factory/lite-menu'
10
- import { PageView, store } from '@things-factory/shell'
11
12
 
12
13
  import { referencePageStyles } from './reference-page-styles'
13
14
 
@@ -35,9 +36,9 @@ class MenuPage extends connect(store)(PageView) {
35
36
  render() {
36
37
  return html`
37
38
  <p>
38
- Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Lite Menu<help-icon
39
+ Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Lite Menu<ox-help-icon
39
40
  topic="module/lite-menu"
40
- ></help-icon>
41
+ ></ox-help-icon>
41
42
  모듈을 제공한다.
42
43
  </p>
43
44
  <section @change=${e => this.setupMenu(e)}>
@@ -1,11 +1,13 @@
1
1
  import '@things-factory/notification'
2
+ import '@operato/help/ox-help-icon.js'
2
3
 
4
+ import { css, html } from 'lit'
5
+ import { connect } from 'pwa-helpers/connect-mixin.js'
6
+
7
+ import { toggleOverlay, TOOL_POSITION } from '@operato/layout'
8
+ import { PageView, store } from '@operato/shell'
3
9
  import { APPEND_APP_TOOL, REMOVE_APP_TOOL } from '@things-factory/apptool-base'
4
- import { PageView, store } from '@things-factory/shell'
5
- import { TOOL_POSITION, toggleOverlay } from '@things-factory/layout-base'
6
- import { css, html } from 'lit-element'
7
10
 
8
- import { connect } from 'pwa-helpers/connect-mixin.js'
9
11
  import { referencePageStyles } from './reference-page-styles'
10
12
 
11
13
  class NotificationPage extends connect(store)(PageView) {
@@ -45,9 +47,9 @@ class NotificationPage extends connect(store)(PageView) {
45
47
  render() {
46
48
  return html`
47
49
  <p>
48
- Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Notification<help-icon
50
+ Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Notification<ox-help-icon
49
51
  topic="module/notification"
50
- ></help-icon>
52
+ ></ox-help-icon>
51
53
  모듈을 제공한다.
52
54
  </p>
53
55
 
@@ -2,7 +2,7 @@ import '@things-factory/form-ui'
2
2
  import '../components/camera-capturer'
3
3
 
4
4
  import { gql } from 'graphql-tag'
5
- import { css, html } from 'lit-element'
5
+ import { css, html } from 'lit'
6
6
  import { connect } from 'pwa-helpers/connect-mixin.js'
7
7
 
8
8
  import { client, PageView, store } from '@things-factory/shell'
@@ -1,11 +1,12 @@
1
1
  import '@material/mwc-linear-progress'
2
- import '@things-factory/help'
2
+ import '@operato/help/ox-help-icon.js'
3
3
 
4
4
  import { gql } from 'graphql-tag'
5
- import { css, html } from 'lit-element'
5
+ import { css, html } from 'lit'
6
6
  import { connect } from 'pwa-helpers/connect-mixin.js'
7
7
 
8
- import { client, PageView, store } from '@things-factory/shell'
8
+ import { client } from '@operato/graphql'
9
+ import { PageView, store } from '@operato/shell'
9
10
 
10
11
  import { referencePageStyles } from './reference-page-styles'
11
12
 
@@ -48,7 +49,8 @@ class PendingJobPage extends connect(store)(PageView) {
48
49
  return html`
49
50
  <p>
50
51
  오래걸리는 서버작업을 수행할 때는 진행과정을 표현해주는 것이 사용자 경험에 도움을 준다. 이를 위해 Things Factory
51
- 프레임워크에서는 oops-progress<help-icon topic="components/oops-progress"></help-icon> 라는 컴포넌트를 제공한다.
52
+ 프레임워크에서는 oops-progress<ox-help-icon topic="components/oops-progress"></ox-help-icon> 라는 컴포넌트를
53
+ 제공한다.
52
54
  </p>
53
55
  <p>
54
56
  아래 'Start' 버튼을 클릭하면, 서버에 작업을 요청하고 그 진행율이 화면에 표현된다. 진행중에는 버튼은 'Stop'
@@ -1,4 +1,4 @@
1
- import { css } from 'lit-element'
1
+ import { css } from 'lit'
2
2
 
3
3
  export const referencePageStyles = css`
4
4
  :host {
@@ -1,8 +1,8 @@
1
1
  import '@operato/data-grist'
2
2
 
3
- import { css, html } from 'lit-element'
4
- import { i18next, localize } from '@things-factory/i18n-base'
3
+ import { css, html } from 'lit'
5
4
 
5
+ import { i18next, localize } from '@things-factory/i18n-base'
6
6
  import { PageView } from '@things-factory/shell'
7
7
 
8
8
  class ReportPage extends localize(i18next)(PageView) {
@@ -1,7 +1,7 @@
1
1
  import '@operato/input/ox-input-file.js'
2
2
 
3
3
  import { gql } from 'graphql-tag'
4
- import { css, html } from 'lit-element'
4
+ import { css, html } from 'lit'
5
5
  import { connect } from 'pwa-helpers/connect-mixin.js'
6
6
 
7
7
  import { client, PageView, store } from '@things-factory/shell'
package/db.sqlite CHANGED
Binary file
@@ -6,14 +6,15 @@
6
6
  "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1642401811109,
10
- "name": "logs/application-2022-01-17-14.log",
11
- "hash": "018ea8f214b453b9829f50ee0ae3bd89"
9
+ "date": 1643432714784,
10
+ "name": "logs/application-2022-01-29-14.log",
11
+ "hash": "b4b941155b95e9a9c3dd0ef700d0d8fe"
12
12
  },
13
13
  {
14
- "date": 1642404084548,
15
- "name": "logs/application-2022-01-17-15.log",
16
- "hash": "2da05a10e29450c72b04e41ca3a6b01e"
14
+ "date": 1643562406803,
15
+ "name": "logs/application-2022-01-31-02.log",
16
+ "hash": "2892825e3ac228e9e3cc8761ee20aabc"
17
17
  }
18
- ]
18
+ ],
19
+ "hashType": "md5"
19
20
  }
@@ -6,29 +6,15 @@
6
6
  "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1637746683906,
10
- "name": "logs/connections-2021-11-24-18.log",
11
- "hash": "d15e7616daaabd2dc4b8fbd3dc37fa3d"
9
+ "date": 1643432716894,
10
+ "name": "logs/connections-2022-01-29-14.log",
11
+ "hash": "ae807fd62a39d9b25673c588afa621c8"
12
12
  },
13
13
  {
14
- "date": 1638784229405,
15
- "name": "logs/connections-2021-12-06-18.log",
16
- "hash": "db425b25003b87e6bec1d94a748909d0"
17
- },
18
- {
19
- "date": 1638785303642,
20
- "name": "logs/connections-2021-12-06-19.log",
21
- "hash": "ee793684ecc87d1b8e9f97b01c0bc30b"
22
- },
23
- {
24
- "date": 1638870082934,
25
- "name": "logs/connections-2021-12-07-18.log",
26
- "hash": "577f2d2bc9e2ededbef8e499e292dcc1"
27
- },
28
- {
29
- "date": 1638955225638,
30
- "name": "logs/connections-2021-12-08-18.log",
31
- "hash": "58546bb57a3ed7d9f915e8a4e4427e60"
14
+ "date": 1643562408398,
15
+ "name": "logs/connections-2022-01-31-02.log",
16
+ "hash": "051259316dbdbb2c6927efc6cd3862f9"
32
17
  }
33
- ]
18
+ ],
19
+ "hashType": "md5"
34
20
  }
@@ -0,0 +1,5 @@
1
+ 2022-01-29T05:05:16.270Z info: File Storage is Ready.
2
+ 2022-01-29T05:05:19.935Z info: Database connection established
3
+ 2022-01-29T05:05:20.556Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
+ 2022-01-29T05:05:20.556Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
5
+ 2022-01-29T05:17:30.280Z error: Cannot return null for non-nullable field Query.ocrRequest.
@@ -0,0 +1,4 @@
1
+ 2022-01-30T17:06:47.788Z info: File Storage is Ready.
2
+ 2022-01-30T17:06:50.263Z info: Database connection established
3
+ 2022-01-30T17:06:51.142Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
+ 2022-01-30T17:06:51.143Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/reference-app",
3
- "version": "4.0.40",
3
+ "version": "4.0.44",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -37,51 +37,56 @@
37
37
  "docker:run": "docker run -it -p 4000:3000 hatiolab/reference-app:latest"
38
38
  },
39
39
  "dependencies": {
40
- "@hatiolab/things-scene": "^2.7.33",
40
+ "@hatiolab/things-scene": "^2.7.34",
41
41
  "@material/mwc-checkbox": "^0.25.3",
42
- "@operato/data-grist": "^0.3.20",
43
- "@operato/ghost-print": "^0.3.20",
44
- "@operato/input": "^0.3.20",
45
- "@operato/ocr": "^0.3.20",
46
- "@operato/popup": "^0.3.20",
47
- "@operato/pull-to-refresh": "^0.3.20",
48
- "@operato/scene-chartjs": "^0.1.3",
49
- "@operato/scene-clock": "^0.1.3",
50
- "@operato/scene-gauge": "^0.1.3",
51
- "@operato/scene-indoor-map": "^0.1.3",
52
- "@operato/scene-progressbar": "^0.1.3",
53
- "@operato/scene-random": "^0.1.3",
54
- "@operato/scene-switch": "^0.1.3",
55
- "@operato/scene-tab": "^0.1.3",
56
- "@things-factory/api": "^4.0.40",
57
- "@things-factory/apptool-ui": "^4.0.40",
58
- "@things-factory/auth-ui": "^4.0.40",
59
- "@things-factory/board-service": "^4.0.40",
60
- "@things-factory/board-ui": "^4.0.40",
61
- "@things-factory/context-ui": "^4.0.40",
62
- "@things-factory/dashboard": "^4.0.40",
63
- "@things-factory/export-ui": "^4.0.40",
64
- "@things-factory/export-ui-excel": "^4.0.40",
65
- "@things-factory/grist-ui": "^4.0.40",
66
- "@things-factory/help": "^4.0.40",
67
- "@things-factory/i18n-ui": "^4.0.40",
68
- "@things-factory/integration-ui": "^4.0.40",
69
- "@things-factory/lite-menu": "^4.0.40",
70
- "@things-factory/more-ui": "^4.0.40",
71
- "@things-factory/notification": "^4.0.40",
72
- "@things-factory/oauth2-client": "^4.0.40",
73
- "@things-factory/print-ui": "^4.0.40",
74
- "@things-factory/resource-ui": "^4.0.40",
75
- "@things-factory/scene-form": "^4.0.40",
76
- "@things-factory/scene-half-roundrect": "^4.0.9",
77
- "@things-factory/scene-news-ticker": "^4.0.40",
78
- "@things-factory/setting-base": "^4.0.40",
79
- "@things-factory/setting-ui": "^4.0.40",
80
- "@things-factory/shell": "^4.0.40",
81
- "@things-factory/system-ui": "^4.0.40"
42
+ "@operato/data-grist": "^0.3.27",
43
+ "@operato/ghost-print": "^0.3.27",
44
+ "@operato/graphql": "^0.3.27",
45
+ "@operato/help": "^0.3.27",
46
+ "@operato/i18n": "^0.3.27",
47
+ "@operato/input": "^0.3.27",
48
+ "@operato/layout": "^0.3.27",
49
+ "@operato/ocr": "^0.3.27",
50
+ "@operato/popup": "^0.3.27",
51
+ "@operato/pull-to-refresh": "^0.3.27",
52
+ "@operato/scene-chartjs": "^0.1.4",
53
+ "@operato/scene-clock": "^0.1.4",
54
+ "@operato/scene-gauge": "^0.1.4",
55
+ "@operato/scene-half-roundrect": "^0.1.4",
56
+ "@operato/scene-indoor-map": "^0.1.4",
57
+ "@operato/scene-progressbar": "^0.1.4",
58
+ "@operato/scene-random": "^0.1.4",
59
+ "@operato/scene-switch": "^0.1.4",
60
+ "@operato/scene-tab": "^0.1.4",
61
+ "@operato/shell": "^0.3.27",
62
+ "@operato/utils": "^0.3.27",
63
+ "@things-factory/api": "^4.0.44",
64
+ "@things-factory/apptool-ui": "^4.0.44",
65
+ "@things-factory/auth-ui": "^4.0.44",
66
+ "@things-factory/board-service": "^4.0.44",
67
+ "@things-factory/board-ui": "^4.0.44",
68
+ "@things-factory/context-ui": "^4.0.44",
69
+ "@things-factory/dashboard": "^4.0.44",
70
+ "@things-factory/export-ui": "^4.0.44",
71
+ "@things-factory/export-ui-excel": "^4.0.44",
72
+ "@things-factory/grist-ui": "^4.0.44",
73
+ "@things-factory/help": "^4.0.44",
74
+ "@things-factory/integration-ui": "^4.0.44",
75
+ "@things-factory/lite-menu": "^4.0.44",
76
+ "@things-factory/more-ui": "^4.0.44",
77
+ "@things-factory/notification": "^4.0.44",
78
+ "@things-factory/oauth2-client": "^4.0.44",
79
+ "@things-factory/print-ui": "^4.0.44",
80
+ "@things-factory/resource-ui": "^4.0.44",
81
+ "@things-factory/scene-form": "^4.0.44",
82
+ "@things-factory/scene-news-ticker": "^4.0.44",
83
+ "@things-factory/setting-base": "^4.0.44",
84
+ "@things-factory/setting-ui": "^4.0.44",
85
+ "@things-factory/shell": "^4.0.44",
86
+ "@things-factory/system-ui": "^4.0.44"
82
87
  },
83
88
  "devDependencies": {
84
- "@things-factory/builder": "^4.0.40"
89
+ "@things-factory/builder": "^4.0.44"
85
90
  },
86
- "gitHead": "f0697b5ab411e4aa1a52de19a6c135f39686eca1"
91
+ "gitHead": "286a037443bfb38c65db964dbfa6c5f2d141d9ac"
87
92
  }
@@ -1,4 +0,0 @@
1
- 2022-01-17T06:43:32.236Z info: File Storage is Ready.
2
- 2022-01-17T06:43:34.636Z info: Database connection established
3
- 2022-01-17T06:43:35.277Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
- 2022-01-17T06:43:35.277Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -1,4 +0,0 @@
1
- 2022-01-17T07:21:25.484Z info: File Storage is Ready.
2
- 2022-01-17T07:21:27.970Z info: Database connection established
3
- 2022-01-17T07:21:28.574Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
- 2022-01-17T07:21:28.575Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
File without changes
File without changes
File without changes