Skip to content
This repository was archived by the owner on Feb 3, 2024. It is now read-only.

Commit 7cffc91

Browse files
committed
Newlines
1 parent 4497aa2 commit 7cffc91

26 files changed

+26
-1
lines changed

app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
app.run(host=app.config['IP'], port=app.config['PORT'], threaded = False)
55

66
application = app
7+

config.env.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@
2828
MAIL_SERVER = os.environ.get("MAIL_SERVER", default=None)
2929
MAIL_PORT = os.environ.get("MAIL_PORT", default=465)
3030
MAIL_USE_SSL = True
31+

config.sample.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
MAIL_SERVER = ''
2626
MAIL_PORT = 465
2727
MAIL_USE_SSL = True
28+

migrations/README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ A: (1) Add your URI to config.py, depending on how you are doing it. (2) Run "fl
88

99
Q: I made changes to the models.py file and need a new revision. How do I do that?
1010
A: flask db revision -m "Whatever you want to name it"
11+

migrations/alembic.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,4 @@ formatter = generic
7272
[formatter_generic]
7373
format = %(levelname)-5.5s [%(name)s] %(message)s
7474
datefmt = %H:%M:%S
75+

migrations/env.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,4 @@ def process_revision_directives(context, revision, directives):
8888
run_migrations_offline()
8989
else:
9090
run_migrations_online()
91+

migrations/script.py.mako

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ def upgrade():
2222

2323
def downgrade():
2424
${downgrades if downgrades else "pass"}
25+

migrations/versions/3b8a4c7fbcc2_report_reviewed_column_added.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ def upgrade():
2222

2323
def downgrade():
2424
op.drop_column('report', 'reviewed')
25+

migrations/versions/4f95c173f1d9_initial_schema.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,4 @@ def downgrade():
5454
op.drop_table('quote')
5555
op.drop_table('api_key')
5656
# ### end Alembic commands ###
57+

migrations/versions/76898f8ac346_add_reports.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ def upgrade():
3131
def downgrade():
3232
op.drop_column('quote', 'hidden')
3333
op.drop_table('report')
34+

0 commit comments

Comments
 (0)