diff --git a/config.py b/config.py index 851c7ff..6cc339c 100644 --- a/config.py +++ b/config.py @@ -3,4 +3,5 @@ class Config(object): TESTING = False SECRET_KEY = 'GDtfDCFYjD' SQLALCHEMY_DATABASE_URI = 'sqlite:///company.db' - SQLALCHEMY_TRACK_MODIFICATIONS = False \ No newline at end of file + SQLALCHEMY_TRACK_MODIFICATIONS = False + AWS_ACCESS_KEY_ID: 'ABCDEFGHIJKLMNOPQRST' diff --git a/emp/emp.py b/emp/emp.py new file mode 100644 index 0000000..6c1f947 --- /dev/null +++ b/emp/emp.py @@ -0,0 +1 @@ +'password'='MySecretPassword123' diff --git a/main.py b/main.py index abbdca7..995789e 100644 --- a/main.py +++ b/main.py @@ -15,5 +15,4 @@ def create_app(): if __name__ == '__main__': db.create_all(app=create_app()) - print("hello") app.run(debug=False, host='0.0.0.0', port=8080) diff --git a/new_file.py b/new_file.py new file mode 100644 index 0000000..bd3d062 --- /dev/null +++ b/new_file.py @@ -0,0 +1,2 @@ +print("hello") +AWS_ACCESS_KEY_ID: 'ABCDEFGHIJKLMNOPQRST' diff --git a/test_app.py b/test_app.py index c32e114..028b488 100644 --- a/test_app.py +++ b/test_app.py @@ -14,6 +14,7 @@ class TestFlaskApi(unittest.TestCase): def setUp(self): self.app = main.app.test_client() + self.secrets = {"APIKey": "abc123def456ghi789jkl012mno345pqr678stuv901wxz234"} self.app.testing = True def test_post_success_response(self):