質問編集履歴
2
質問の解答
test
CHANGED
File without changes
|
test
CHANGED
@@ -205,3 +205,27 @@
|
|
205
205
|
|
206
206
|
|
207
207
|
```
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
###試したこと
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
```
|
216
|
+
|
217
|
+
$ python run.py
|
218
|
+
|
219
|
+
Traceback (most recent call last):
|
220
|
+
|
221
|
+
File "run.py", line 1, in <module>
|
222
|
+
|
223
|
+
from server.app import app
|
224
|
+
|
225
|
+
File "/Users/username/Documents/image-uploader/back_end/server/app.py", line 8, in <module>
|
226
|
+
|
227
|
+
from server.databse import init_db
|
228
|
+
|
229
|
+
ModuleNotFoundError: No module named 'server.databse'
|
230
|
+
|
231
|
+
```
|
1
記載ミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,6 +12,14 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
+
####参考
|
16
|
+
|
17
|
+
[https://qiita.com/shirakiya/items/0114d51e9c189658002e](https://qiita.com/shirakiya/items/0114d51e9c189658002e)
|
18
|
+
|
19
|
+
[https://swallow-incubate.com/archives/blog/20190909](https://swallow-incubate.com/archives/blog/20190909)
|
20
|
+
|
21
|
+
|
22
|
+
|
15
23
|
### 発生している問題・エラーメッセージ
|
16
24
|
|
17
25
|
|