@things-factory/operato-codelingua 8.0.0-beta.0 → 8.0.0-beta.2
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.
- package/package.json +26 -26
- package/client/bootstrap.ts +0 -206
- package/client/icons/menu-icons.ts +0 -91
- package/client/index.ts +0 -0
- package/client/pages/git-project/git-project-list-page.ts +0 -427
- package/client/route.ts +0 -8
- package/client/themes/dark.css +0 -51
- package/client/themes/light.css +0 -51
- package/client/tsconfig.json +0 -12
- package/client/viewparts/menu-tools.ts +0 -170
- package/client/viewparts/user-circle.ts +0 -24
- package/db.sqlite +0 -0
- package/installer/config.production.js +0 -40
- package/installer/docker-compose.yml +0 -42
- package/installer/install.sh +0 -54
- package/installer/migrate.sh +0 -1
- package/installer/start.sh +0 -18
- package/installer/stop.sh +0 -1
- package/installer/upgrade.sh +0 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +0 -25
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +0 -50
- package/logs/application-2024-07-12-23.log +0 -81
- package/logs/application-2024-07-13-00.log +0 -1
- package/logs/application-2024-07-13-01.log +0 -168
- package/logs/connections-2024-07-07-17.log +0 -41
- package/logs/connections-2024-07-07-20.log +0 -41
- package/logs/connections-2024-07-08-00.log +0 -41
- package/logs/connections-2024-07-08-01.log +0 -41
- package/logs/connections-2024-07-08-02.log +0 -41
- package/logs/connections-2024-07-08-19.log +0 -41
- package/logs/connections-2024-07-12-23.log +0 -41
- package/logs/connections-2024-07-13-01.log +0 -82
- package/server/controllers/github-controller.ts +0 -98
- package/server/controllers/index.ts +0 -0
- package/server/index.ts +0 -7
- package/server/middlewares/index.ts +0 -3
- package/server/migrations/index.ts +0 -9
- package/server/routers/github-webhook-router.ts +0 -45
- package/server/routes.ts +0 -30
- package/server/service/git-project/git-project-mutation.ts +0 -179
- package/server/service/git-project/git-project-query.ts +0 -48
- package/server/service/git-project/git-project-type.ts +0 -76
- package/server/service/git-project/git-project.ts +0 -114
- package/server/service/git-project/index.ts +0 -7
- package/server/service/index.ts +0 -21
- package/server/tsconfig.json +0 -9
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
import { css, html, LitElement } from 'lit'
|
|
2
|
-
import { customElement, property, query } from 'lit/decorators.js'
|
|
3
|
-
|
|
4
|
-
import { connect } from 'pwa-helpers'
|
|
5
|
-
|
|
6
|
-
import { store } from '@operato/shell'
|
|
7
|
-
|
|
8
|
-
import { ICONS_PROGRESS, ICONS_COMPLETED, ICONS_STATUS, ICONS_OPERATING, ICONS_SETTING } from '../icons/menu-icons'
|
|
9
|
-
|
|
10
|
-
@customElement('menu-tools')
|
|
11
|
-
export class MenuTools extends connect(store)(LitElement) {
|
|
12
|
-
static styles = [
|
|
13
|
-
css`
|
|
14
|
-
:host {
|
|
15
|
-
display: flex;
|
|
16
|
-
background-color: var(--secondary-color);
|
|
17
|
-
|
|
18
|
-
/* for narrow mode */
|
|
19
|
-
flex-direction: column;
|
|
20
|
-
width: 100%;
|
|
21
|
-
--menu-tools-color: rgba(255, 255, 255, 0.9);
|
|
22
|
-
--menu-tools-active-color: rgba(107, 178, 249, 1);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
:host([width='WIDE']) {
|
|
26
|
-
/* for wide mode */
|
|
27
|
-
flex-direction: row;
|
|
28
|
-
width: initial;
|
|
29
|
-
height: 100%;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
ul {
|
|
33
|
-
display: flex;
|
|
34
|
-
flex-direction: row;
|
|
35
|
-
|
|
36
|
-
margin: auto;
|
|
37
|
-
padding: 0;
|
|
38
|
-
list-style: none;
|
|
39
|
-
height: 100%;
|
|
40
|
-
overflow: none;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
:host([width='NARROW']) ul {
|
|
44
|
-
width: 100%;
|
|
45
|
-
justify-content: space-around;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
:host([width='WIDE']) ul {
|
|
49
|
-
flex-direction: column;
|
|
50
|
-
}
|
|
51
|
-
:host([width='NARROW']) li {
|
|
52
|
-
flex: 1;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
:host([width='WIDE']) li {
|
|
56
|
-
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
57
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
a {
|
|
61
|
-
display: flex;
|
|
62
|
-
flex-direction: column;
|
|
63
|
-
padding: 5px 0px;
|
|
64
|
-
opacity: 0.7;
|
|
65
|
-
align-items: center;
|
|
66
|
-
text-align: center;
|
|
67
|
-
text-decoration: none;
|
|
68
|
-
text-transform: capitalize;
|
|
69
|
-
color: var(--menu-tools-color);
|
|
70
|
-
border-left: 2px solid transparent;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
a[active] {
|
|
74
|
-
opacity: 1;
|
|
75
|
-
color: var(--menu-tools-active-color);
|
|
76
|
-
font-weight: bold;
|
|
77
|
-
background-color: rgba(0, 0, 0, 0.15);
|
|
78
|
-
border-left: 2px solid var(--menu-tools-active-color);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
:host([width='NARROW']) a {
|
|
82
|
-
padding: 0px 0px 5px 0px;
|
|
83
|
-
opacity: 0.8;
|
|
84
|
-
color: var(--menu-tools-color);
|
|
85
|
-
border-left: none;
|
|
86
|
-
border-top: 2px solid transparent;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
:host([width='NARROW']) a[active] {
|
|
90
|
-
opacity: 1;
|
|
91
|
-
color: var(--menu-tools-active-color);
|
|
92
|
-
font-weight: bold;
|
|
93
|
-
background-color: rgba(0, 0, 0, 0.15);
|
|
94
|
-
border-left: none;
|
|
95
|
-
border-top: 2px solid var(--menu-tools-active-color);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
img {
|
|
99
|
-
display: block;
|
|
100
|
-
width: 35px;
|
|
101
|
-
padding: 5px 10px 0px 10px;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
:host([width='NARROW']) img {
|
|
105
|
-
padding: 0;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
div {
|
|
109
|
-
font-size: 0.6em;
|
|
110
|
-
}
|
|
111
|
-
`
|
|
112
|
-
]
|
|
113
|
-
|
|
114
|
-
@property({ type: String }) page?: string
|
|
115
|
-
@property({ type: String, reflect: true }) width?: string
|
|
116
|
-
|
|
117
|
-
private menus: { name: string; path: string; icons: string[] }[] = []
|
|
118
|
-
|
|
119
|
-
render() {
|
|
120
|
-
this.menus = [
|
|
121
|
-
{
|
|
122
|
-
name: '진행중',
|
|
123
|
-
path: 'git-project-list',
|
|
124
|
-
icons: ICONS_PROGRESS
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
name: '완료',
|
|
128
|
-
path: 'project-completed-list',
|
|
129
|
-
icons: ICONS_COMPLETED
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
name: '현황',
|
|
133
|
-
path: 'dssp-status',
|
|
134
|
-
icons: ICONS_STATUS
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
name: '공정표',
|
|
138
|
-
path: 'project-schedule-list',
|
|
139
|
-
icons: ICONS_OPERATING
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
name: '셋팅',
|
|
143
|
-
path: 'project-setting-list',
|
|
144
|
-
icons: ICONS_SETTING
|
|
145
|
-
}
|
|
146
|
-
]
|
|
147
|
-
|
|
148
|
-
var page = this.page || ''
|
|
149
|
-
|
|
150
|
-
return html`
|
|
151
|
-
<ul>
|
|
152
|
-
${this.menus.map(
|
|
153
|
-
menu => html`
|
|
154
|
-
<li>
|
|
155
|
-
<a href=${menu.path} ?active=${!!~page.indexOf(menu.path)}>
|
|
156
|
-
<img src=${!!~page.indexOf(menu.path) ? menu.icons[1] : menu.icons[0]} />
|
|
157
|
-
<div>${menu.name}</div>
|
|
158
|
-
</a>
|
|
159
|
-
</li>
|
|
160
|
-
`
|
|
161
|
-
)}
|
|
162
|
-
</ul>
|
|
163
|
-
`
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
stateChanged(state) {
|
|
167
|
-
this.page = state.route.page
|
|
168
|
-
this.width = state.layout.width
|
|
169
|
-
}
|
|
170
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit'
|
|
2
|
-
import { customElement } from 'lit/decorators.js'
|
|
3
|
-
|
|
4
|
-
const userIcon = new URL('../../assets/images/user.png', import.meta.url).href
|
|
5
|
-
|
|
6
|
-
@customElement('user-circle')
|
|
7
|
-
export class UserCircle extends LitElement {
|
|
8
|
-
static styles = [
|
|
9
|
-
css`
|
|
10
|
-
img {
|
|
11
|
-
display: block;
|
|
12
|
-
width: 36px;
|
|
13
|
-
height: 36px;
|
|
14
|
-
border-radius: 50%;
|
|
15
|
-
|
|
16
|
-
object-fit: cover;
|
|
17
|
-
}
|
|
18
|
-
`
|
|
19
|
-
]
|
|
20
|
-
|
|
21
|
-
render() {
|
|
22
|
-
return html` <img src=${userIcon} class="user" /> `
|
|
23
|
-
}
|
|
24
|
-
}
|
package/db.sqlite
DELETED
|
Binary file
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
SECRET: '0xD58F835B69D207A76CC5F84a70a1D0d4C79dAC95', // should be changed
|
|
3
|
-
email: {
|
|
4
|
-
host: 'smtp.office365.com', // your sender-email smtp host
|
|
5
|
-
port: 587, // smtp server port
|
|
6
|
-
secure: false, // true for 465, false for other ports
|
|
7
|
-
auth: {
|
|
8
|
-
user: 'your sender-email',
|
|
9
|
-
pass: 'your sender-email password' // generated ethereal password
|
|
10
|
-
},
|
|
11
|
-
secureConnection: false,
|
|
12
|
-
tls: {
|
|
13
|
-
ciphers: 'SSLv3'
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
logger: {
|
|
17
|
-
file: {
|
|
18
|
-
filename: 'logs/application-%DATE%.log',
|
|
19
|
-
datePattern: 'YYYY-MM-DD-HH',
|
|
20
|
-
zippedArchive: false,
|
|
21
|
-
maxSize: '20m',
|
|
22
|
-
maxFiles: '2d',
|
|
23
|
-
level: 'info'
|
|
24
|
-
},
|
|
25
|
-
console: {
|
|
26
|
-
level: 'silly'
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
ormconfig: {
|
|
30
|
-
name: 'default',
|
|
31
|
-
type: 'postgres',
|
|
32
|
-
host: 'postgres',
|
|
33
|
-
port: 5432,
|
|
34
|
-
database: 'postgres',
|
|
35
|
-
username: 'postgres',
|
|
36
|
-
password: 'abcd1234',
|
|
37
|
-
synchronize: true,
|
|
38
|
-
logging: true
|
|
39
|
-
}
|
|
40
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
version: '3'
|
|
2
|
-
services:
|
|
3
|
-
nginx:
|
|
4
|
-
image: hatiolab/operato-nginx:latest
|
|
5
|
-
ports:
|
|
6
|
-
- ${HostPort}:80
|
|
7
|
-
depends_on:
|
|
8
|
-
- app
|
|
9
|
-
app:
|
|
10
|
-
build: .
|
|
11
|
-
container_name: operato-codelingua
|
|
12
|
-
image: hatiolab/operato-codelingua:latest
|
|
13
|
-
privileged: true
|
|
14
|
-
volumes:
|
|
15
|
-
- ./logs:/app/logs
|
|
16
|
-
- ./config.production.js:/app/config.production.js
|
|
17
|
-
ports:
|
|
18
|
-
- 4000:3000
|
|
19
|
-
depends_on:
|
|
20
|
-
- postgres
|
|
21
|
-
- mosquitto
|
|
22
|
-
logging:
|
|
23
|
-
driver: 'json-file'
|
|
24
|
-
options:
|
|
25
|
-
max-size: '100m'
|
|
26
|
-
max-file: '3'
|
|
27
|
-
postgres:
|
|
28
|
-
image: postgres:13.2
|
|
29
|
-
container_name: db-operato-codelingua
|
|
30
|
-
environment:
|
|
31
|
-
POSTGRES_PASSWORD: abcd1234
|
|
32
|
-
POSTGRES_USER: postgres
|
|
33
|
-
PGDATA: /var/lib/postgresql/data/pgdata
|
|
34
|
-
volumes:
|
|
35
|
-
- ./postgres_data:/var/lib/postgresql/data/pgdata
|
|
36
|
-
ports:
|
|
37
|
-
- '55432:5432'
|
|
38
|
-
mosquitto:
|
|
39
|
-
image: eclipse-mosquitto:latest
|
|
40
|
-
ports:
|
|
41
|
-
- 1883:1883
|
|
42
|
-
- 9001:9001
|
package/installer/install.sh
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
if [ -f "config.production.js" ] ; then
|
|
2
|
-
echo "config.production.js exist"
|
|
3
|
-
else
|
|
4
|
-
echo "config.production.js create"
|
|
5
|
-
curl -O https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/config.production.js
|
|
6
|
-
fi
|
|
7
|
-
|
|
8
|
-
if [ -f "start.sh" ] ; then
|
|
9
|
-
echo "start.sh exist"
|
|
10
|
-
else
|
|
11
|
-
echo "start.sh create"
|
|
12
|
-
curl -O https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/start.sh
|
|
13
|
-
fi
|
|
14
|
-
|
|
15
|
-
if [ -f "stop.sh" ] ; then
|
|
16
|
-
echo "stop.sh exist"
|
|
17
|
-
else
|
|
18
|
-
echo "stop.sh create"
|
|
19
|
-
curl -O https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/stop.sh
|
|
20
|
-
fi
|
|
21
|
-
|
|
22
|
-
if [ -f "upgrade.sh" ] ; then
|
|
23
|
-
echo "upgrade.sh exist"
|
|
24
|
-
else
|
|
25
|
-
echo "upgrade.sh create"
|
|
26
|
-
curl -O https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/upgrade.sh
|
|
27
|
-
fi
|
|
28
|
-
|
|
29
|
-
if [ -f "migrate.sh" ] ; then
|
|
30
|
-
echo "migrate.sh exist"
|
|
31
|
-
else
|
|
32
|
-
echo "migrate.sh create"
|
|
33
|
-
curl -O https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/migrate.sh
|
|
34
|
-
fi
|
|
35
|
-
|
|
36
|
-
if [ -f "docker-compose.yml" ] ; then
|
|
37
|
-
echo "docker-compose.yml exist"
|
|
38
|
-
else
|
|
39
|
-
echo "docker-compose.yml create"
|
|
40
|
-
curl -O https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/docker-compose.yml
|
|
41
|
-
fi
|
|
42
|
-
|
|
43
|
-
chmod u+x start.sh
|
|
44
|
-
chmod u+x stop.sh
|
|
45
|
-
chmod u+x upgrade.sh
|
|
46
|
-
chmod u+x migrate.sh
|
|
47
|
-
|
|
48
|
-
echo "HostPort=3000" > .env
|
|
49
|
-
|
|
50
|
-
docker pull hatiolab/operato-codelingua:latest
|
|
51
|
-
|
|
52
|
-
docker pull hatiolab/operato-nginx:latest
|
|
53
|
-
|
|
54
|
-
docker-compose create
|
package/installer/migrate.sh
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
docker exec -it operato-codelingua npm run migration -- --mode=production
|
package/installer/start.sh
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
HOST_PORT=3000
|
|
2
|
-
|
|
3
|
-
if [ $# -eq 0 ] ; then
|
|
4
|
-
echo "Warning: default port 3000"
|
|
5
|
-
else
|
|
6
|
-
HOST_PORT=$1
|
|
7
|
-
fi
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
echo "HOST_PORT : ${HOST_PORT}"
|
|
11
|
-
|
|
12
|
-
echo "HostPort="$HOST_PORT > .env
|
|
13
|
-
|
|
14
|
-
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
15
|
-
xhost +"local:docker@"
|
|
16
|
-
fi
|
|
17
|
-
|
|
18
|
-
docker-compose up -d
|
package/installer/stop.sh
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
docker-compose stop
|
package/installer/upgrade.sh
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
curl -fsSL https://raw.githubusercontent.com/things-factory/things-factory/master/packages/operato-codelingua/installer/install.sh | bash -s
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"keep": {
|
|
3
|
-
"days": true,
|
|
4
|
-
"amount": 2
|
|
5
|
-
},
|
|
6
|
-
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
|
-
"files": [
|
|
8
|
-
{
|
|
9
|
-
"date": 1720794867845,
|
|
10
|
-
"name": "logs/application-2024-07-12-23.log",
|
|
11
|
-
"hash": "0f6d890d8881171c323be10637d1e5dc7a41c985702b7e52c824d8aecb13584a"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1720799647140,
|
|
15
|
-
"name": "logs/application-2024-07-13-00.log",
|
|
16
|
-
"hash": "a7ad07f91f7b028d13e859ce42ba3cba772897be3ce231beea289b7f7031e46b"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1720802522192,
|
|
20
|
-
"name": "logs/application-2024-07-13-01.log",
|
|
21
|
-
"hash": "76e646c3e74ea195f62e5f48c059ce398d7b2a2d60dbecdd05cf2f482fb2de68"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"hashType": "sha256"
|
|
25
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"keep": {
|
|
3
|
-
"days": true,
|
|
4
|
-
"amount": 14
|
|
5
|
-
},
|
|
6
|
-
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
|
-
"files": [
|
|
8
|
-
{
|
|
9
|
-
"date": 1720341844555,
|
|
10
|
-
"name": "logs/connections-2024-07-07-17.log",
|
|
11
|
-
"hash": "38702bbd1592550128590a820c26f9b2247464d2228f28c728906edead8a5aa6"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1720350572324,
|
|
15
|
-
"name": "logs/connections-2024-07-07-20.log",
|
|
16
|
-
"hash": "86af353bccc048716048097ec21fa3326179e79c6a6ec090ad27dcd73c45b7a6"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1720366968924,
|
|
20
|
-
"name": "logs/connections-2024-07-08-00.log",
|
|
21
|
-
"hash": "0e34d19988f173471413a9caa4c544e02aa7a132ff83e0594ec12a491986cbca"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"date": 1720368255269,
|
|
25
|
-
"name": "logs/connections-2024-07-08-01.log",
|
|
26
|
-
"hash": "48fd898a786718b22f885dbfeb2556986f16c95308acdf6d549328a3590e4ebd"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"date": 1720375001854,
|
|
30
|
-
"name": "logs/connections-2024-07-08-02.log",
|
|
31
|
-
"hash": "2be439cd478f96558877ea551c60c4019760688aa13498f65e995e83d331b655"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"date": 1720433189417,
|
|
35
|
-
"name": "logs/connections-2024-07-08-19.log",
|
|
36
|
-
"hash": "0cbdbfc182011843f5ec78144bbc6cad3a3654202bbb9e40202e5e73a1b3f6f7"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"date": 1720794869252,
|
|
40
|
-
"name": "logs/connections-2024-07-12-23.log",
|
|
41
|
-
"hash": "ae502c02a89383f4c19e1976f31f841a9133330037ad1ce16cc594f28a0d4eaf"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"date": 1720802559256,
|
|
45
|
-
"name": "logs/connections-2024-07-13-01.log",
|
|
46
|
-
"hash": "1035c90ee75fa7972d19bee7ccb3a5f997b16fa70696a9cec5210bd3cc54e5c6"
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"hashType": "sha256"
|
|
50
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
2024-07-12T23:34:41+09:00 info: File Storage is Ready.
|
|
2
|
-
2024-07-12T23:34:42+09:00 error: Error: Cannot find module 'oracledb'
|
|
3
|
-
Require stack:
|
|
4
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/connector/oracle-connector.js
|
|
5
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/connector/index.js
|
|
6
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/index.js
|
|
7
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/index.js
|
|
8
|
-
- /Users/super/Documents/GitHub/things-factory/packages/env/lib/module-loader.js
|
|
9
|
-
- /Users/super/Documents/GitHub/things-factory/packages/env/index.js
|
|
10
|
-
- /Users/super/Documents/GitHub/things-factory/packages/shell/dist-server/server-dev.js
|
|
11
|
-
- /Users/super/Documents/GitHub/things-factory/packages/shell/bin/things-factory-dev
|
|
12
|
-
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
13
|
-
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
14
|
-
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
15
|
-
at require (node:internal/modules/helpers:179:18)
|
|
16
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/connector/oracle-connector.js:7:20)
|
|
17
|
-
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
18
|
-
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
19
|
-
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
20
|
-
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
21
|
-
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
22
|
-
at require (node:internal/modules/helpers:179:18)
|
|
23
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/connector/index.js:11:1)
|
|
24
|
-
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
25
|
-
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
26
|
-
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
27
|
-
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
28
|
-
2024-07-12T23:34:42+09:00 error: Error: Cannot find module 'oracledb'
|
|
29
|
-
Require stack:
|
|
30
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/task/oracle-procedure.js
|
|
31
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/task/index.js
|
|
32
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/index.js
|
|
33
|
-
- /Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/index.js
|
|
34
|
-
- /Users/super/Documents/GitHub/things-factory/packages/env/lib/module-loader.js
|
|
35
|
-
- /Users/super/Documents/GitHub/things-factory/packages/env/index.js
|
|
36
|
-
- /Users/super/Documents/GitHub/things-factory/packages/shell/dist-server/server-dev.js
|
|
37
|
-
- /Users/super/Documents/GitHub/things-factory/packages/shell/bin/things-factory-dev
|
|
38
|
-
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
39
|
-
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
40
|
-
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
41
|
-
at require (node:internal/modules/helpers:179:18)
|
|
42
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/task/oracle-procedure.js:9:20)
|
|
43
|
-
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
44
|
-
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
45
|
-
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
46
|
-
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
47
|
-
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
48
|
-
at require (node:internal/modules/helpers:179:18)
|
|
49
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/things-factory/packages/integration-base/dist-server/engine/task/index.js:43:1)
|
|
50
|
-
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
51
|
-
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
52
|
-
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
53
|
-
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
54
|
-
2024-07-12T23:34:42+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
55
|
-
Require stack:
|
|
56
|
-
- /Users/super/Documents/GitHub/things-factory/packages/board-service/dist-server/controllers/print.js
|
|
57
|
-
- /Users/super/Documents/GitHub/things-factory/packages/board-service/dist-server/controllers/index.js
|
|
58
|
-
- /Users/super/Documents/GitHub/things-factory/packages/board-service/dist-server/index.js
|
|
59
|
-
- /Users/super/Documents/GitHub/things-factory/packages/env/lib/module-loader.js
|
|
60
|
-
- /Users/super/Documents/GitHub/things-factory/packages/env/index.js
|
|
61
|
-
- /Users/super/Documents/GitHub/things-factory/packages/shell/dist-server/server-dev.js
|
|
62
|
-
- /Users/super/Documents/GitHub/things-factory/packages/shell/bin/things-factory-dev
|
|
63
|
-
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
64
|
-
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
65
|
-
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
66
|
-
at require (node:internal/modules/helpers:179:18)
|
|
67
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/things-factory/packages/board-service/dist-server/controllers/print.js:10:17)
|
|
68
|
-
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
69
|
-
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
70
|
-
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
71
|
-
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
72
|
-
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
73
|
-
at require (node:internal/modules/helpers:179:18)
|
|
74
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/things-factory/packages/board-service/dist-server/controllers/index.js:4:17)
|
|
75
|
-
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
76
|
-
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
77
|
-
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
78
|
-
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
79
|
-
2024-07-12T23:34:43+09:00 info: Default DataSource established
|
|
80
|
-
2024-07-12T23:34:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
81
|
-
2024-07-12T23:34:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2024-07-13T00:54:07+09:00 error: Cannot query field "unregisterGithubWebhook" on type "Mutation".
|