-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed trailing whitespace - Ensured end-of-file newlines - Checked YAML and JSON syntax - Prevented addition of large files - Formatted Python code with Black - Linted Python code with Flake8 - Linted JavaScript and TypeScript with ESLint - Formatted code with Prettier - Ensured no blanket "noqa" comments or use of "eval" in Python - Checked Python type annotations with MyPy
- Loading branch information
1 parent
49dbfed
commit baaad27
Showing
27 changed files
with
611 additions
and
491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FLASK_APP=run.py | ||
FLASK_ENV=development | ||
FLASK_DEBUG=1 | ||
FLASK_RUN_PORT=5000 | ||
FLASK_RUN_PORT=5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import os | ||
|
||
|
||
class Config: | ||
DEBUG = os.getenv('FLASK_DEBUG', True) | ||
TESTING = os.getenv('FLASK_TESTING', True) | ||
SECRET_KEY = os.getenv('SECRET_KEY', 'roamify_key') | ||
DEBUG = os.getenv("FLASK_DEBUG", True) | ||
TESTING = os.getenv("FLASK_TESTING", True) | ||
SECRET_KEY = os.getenv("SECRET_KEY", "roamify_key") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.