added instance directory, added tests directory, removed markdown_content

This commit is contained in:
2023-12-27 16:40:47 -05:00
parent 4fca9b53d3
commit 368f6b645b
33 changed files with 10 additions and 321 deletions

BIN
instance/all_paw_care.db Normal file

Binary file not shown.

30
instance/config.py Normal file
View 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'
]