added instance directory, added tests directory, removed markdown_content
This commit is contained in:
BIN
instance/all_paw_care.db
Normal file
BIN
instance/all_paw_care.db
Normal file
Binary file not shown.
30
instance/config.py
Normal file
30
instance/config.py
Normal file
@@ -0,0 +1,30 @@
|
||||
import os
|
||||
|
||||
class Config(object):
|
||||
# Enable debugging for development
|
||||
DEBUG = True
|
||||
|
||||
# App base directory
|
||||
BASE_DIR = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
# Mail client config
|
||||
MAIL_SERVER = 'smtp.fastmail.com'
|
||||
MAIL_PORT = 465
|
||||
MAIL_USER = 'awkawb@awkawb.cloud'
|
||||
MAIL_PASSWORD = 'm3vaxbmp3tx9fqx4'
|
||||
MAIL_SENDER = 'support@allpawcare.com'
|
||||
MAIL_RECIPIENTS = ['support@allpawcare.com']
|
||||
|
||||
# Database config
|
||||
DB_FILE = 'all_paw_care.db'
|
||||
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + BASE_DIR + '/' + DB_FILE
|
||||
|
||||
# Image breakpoints
|
||||
IMG_BREAKPOINTS = [
|
||||
'576px',
|
||||
'768px',
|
||||
'992px',
|
||||
'1200px',
|
||||
'1400px'
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user