質問編集履歴

5

修正

2018/10/10 06:49

投稿

sequelanonymous
sequelanonymous

スコア123

test CHANGED
File without changes
test CHANGED
@@ -79,7 +79,3 @@
79
79
 
80
80
 
81
81
  ```
82
-
83
-
84
-
85
- stating.py及び、 production.pyはそれぞれ、環境ごとの環境変数がかかれている。

4

追記

2018/10/10 06:49

投稿

sequelanonymous
sequelanonymous

スコア123

test CHANGED
File without changes
test CHANGED
@@ -14,9 +14,11 @@
14
14
 
15
15
  ```python
16
16
 
17
+ * create_appは、initファイルからimport
18
+
17
19
  import os
18
20
 
19
- from module import create_app
21
+ from xxx import create_app
20
22
 
21
23
 
22
24
 

3

追記

2018/10/10 00:16

投稿

sequelanonymous
sequelanonymous

スコア123

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,51 @@
33
33
  app.run(host='127.0.0.1', port=8080, debug=True)
34
34
 
35
35
  ```
36
+
37
+
38
+
39
+ 追記
40
+
41
+
42
+
43
+ test.py(ローカルで動かす用のconfigファイル)
44
+
45
+ ```
46
+
47
+ import os
48
+
49
+ from pathlib import Path
50
+
51
+ from module.config.base import Config
52
+
53
+
54
+
55
+ basedir = Path(__file__).parent.parent.parent
56
+
57
+
58
+
59
+
60
+
61
+ class LocalConfig(Config):
62
+
63
+ TESTING = True
64
+
65
+ DEBUG = True
66
+
67
+ SQLALCHEMY_DATABASE_URI = "sqlite:////" + os.path.join(basedir, "test.db")
68
+
69
+
70
+
71
+ @staticmethod
72
+
73
+ def init_app(app):
74
+
75
+ pass
76
+
77
+
78
+
79
+ ```
80
+
81
+
82
+
83
+ stating.py及び、 production.pyはそれぞれ、環境ごとの環境変数がかかれている。

2

2018/10/10 00:09

投稿

sequelanonymous
sequelanonymous

スコア123

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
1
  test.py/staging.py/production.pyのそれぞれ3つのconfigファイルがあります。
2
+
3
+ この三つの環境の違いは、year.pyはローカル環境、staging.pyはGAE環境、production.pyはGKE環境です。
2
4
 
3
5
  下記のコードにどう追記していけば、これらのconfigの読み替えができるようしたいです。
4
6
 

1

修正

2018/10/09 14:47

投稿

sequelanonymous
sequelanonymous

スコア123

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  import os
16
16
 
17
- from test import create_app
17
+ from module import create_app
18
18
 
19
19
 
20
20