teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

質問の解答

2021/01/23 06:09

投稿

aiai8976
aiai8976

スコア112

title CHANGED
File without changes
body CHANGED
@@ -101,4 +101,16 @@
101
101
  db.init_app(app)
102
102
  Migrate(app, db)
103
103
 
104
+ ```
105
+
106
+ ###試したこと
107
+
108
+ ```
109
+ $ python run.py
110
+ Traceback (most recent call last):
111
+ File "run.py", line 1, in <module>
112
+ from server.app import app
113
+ File "/Users/username/Documents/image-uploader/back_end/server/app.py", line 8, in <module>
114
+ from server.databse import init_db
115
+ ModuleNotFoundError: No module named 'server.databse'
104
116
  ```

1

記載ミス

2021/01/23 06:09

投稿

aiai8976
aiai8976

スコア112

title CHANGED
File without changes
body CHANGED
@@ -5,6 +5,10 @@
5
5
  データベースが作成されていることは確認済みです。
6
6
  わかる方がいましたらコメントお願いします。
7
7
 
8
+ ####参考
9
+ [https://qiita.com/shirakiya/items/0114d51e9c189658002e](https://qiita.com/shirakiya/items/0114d51e9c189658002e)
10
+ [https://swallow-incubate.com/archives/blog/20190909](https://swallow-incubate.com/archives/blog/20190909)
11
+
8
12
  ### 発生している問題・エラーメッセージ
9
13
 
10
14
  ```