質問編集履歴
1
Activityログの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,6 +48,102 @@
|
|
48
48
|
|
49
49
|
|
50
50
|
|
51
|
+
Heroku Activityログ
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
-----> Node.js app detected
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
-----> Creating runtime environment
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
NPM_CONFIG_LOGLEVEL=error
|
64
|
+
|
65
|
+
NODE_ENV=production
|
66
|
+
|
67
|
+
NODE_MODULES_CACHE=true
|
68
|
+
|
69
|
+
NODE_VERBOSE=false
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
-----> Installing binaries
|
74
|
+
|
75
|
+
engines.node (package.json): unspecified
|
76
|
+
|
77
|
+
engines.npm (package.json): unspecified (use default)
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
Resolving node version 12.x...
|
82
|
+
|
83
|
+
Downloading and installing node 12.19.0...
|
84
|
+
|
85
|
+
Using default npm version: 6.14.8
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
-----> Installing dependencies
|
90
|
+
|
91
|
+
Installing node modules (package.json)
|
92
|
+
|
93
|
+
up to date in 0.223s
|
94
|
+
|
95
|
+
found 0 vulnerabilities
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
-----> Build
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
-----> Caching build
|
106
|
+
|
107
|
+
- node_modules (nothing to cache)
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
-----> Pruning devDependencies
|
112
|
+
|
113
|
+
up to date in 0.23s
|
114
|
+
|
115
|
+
found 0 vulnerabilities
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
-----> Build succeeded!
|
122
|
+
|
123
|
+
! This app may not specify any way to start a node process
|
124
|
+
|
125
|
+
https://devcenter.heroku.com/articles/nodejs-support#default-web-process-type
|
126
|
+
|
127
|
+
-----> Discovering process types
|
128
|
+
|
129
|
+
Procfile declares types -> (none)
|
130
|
+
|
131
|
+
Default types for buildpack -> web
|
132
|
+
|
133
|
+
-----> Compressing...
|
134
|
+
|
135
|
+
Done: 22.4M
|
136
|
+
|
137
|
+
-----> Launching...
|
138
|
+
|
139
|
+
Released v6
|
140
|
+
|
141
|
+
https://intense-hollows-34215.herokuapp.com/ deployed to Heroku
|
142
|
+
|
143
|
+
```
|
144
|
+
|
145
|
+
|
146
|
+
|
51
147
|
### 該当のソースコード
|
52
148
|
|
53
149
|
package.json
|