-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
51 lines (39 loc) · 1.73 KB
/
config.py
File metadata and controls
51 lines (39 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
'''Clase base para asignar las constantes de configuración desde variables de entorno.
Las constantes aquí declaradas aplican para todos los entornos'''
FLASK_APP = 'app'
SECRET_KEY = os.environ.get('SECRET_KEY') or 'hard to guess string'
MAIL_SERVER = os.environ.get('MAIL_SERVER', 'smtp.googlemail.com')
MAIL_PORT = int(os.environ.get('MAIL_PORT', '587'))
MAIL_USE_TLS = os.environ.get('MAIL_USE_TLS', 'true').lower() in \
['true', 'on', '1']
MAIL_USERNAME = os.environ.get('MAIL_USERNAME')
MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD')
FLASKY_MAIL_SUBJECT_PREFIX = '[Flasky]'
FLASKY_MAIL_SENDER = 'Flasky Admin <flasky@example.com>'
FLASKY_ADMIN = os.environ.get('FLASKY_ADMIN')
SQLALCHEMY_TRACK_MODIFICATIONS = False
class DevelopmentConfig(Config):
'''Clase para el entorno de desarrollo'''
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.environ.get('DEV_DATABASE_URL') or \
'sqlite:///' + os.path.join(basedir, 'data-dev.sqlite')
class TestingConfig(Config):
'''Clase para el entorno de pruebas'''
TESTING = True
SQLALCHEMY_DATABASE_URI = os.environ.get('TEST_DATABASE_URL') or \
'sqlite://' + os.path.join(basedir, 'data-test.sqlite')
class ProductionConfig(Config):
'''Clase para el entorno de producción'''
uri = os.getenv("DATABASE_URL") # or other relevant config var
# if uri.startswith("postgres://"):
# uri = uri.replace("postgres://", "postgresql://", 1)
SQLALCHEMY_DATABASE_URI = uri
config = {
'default': DevelopmentConfig,
'development': DevelopmentConfig,
'testing': TestingConfig,
'production': ProductionConfig
}