-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved file reading methods to own module, added legacy file name hand…
…ling from reV, allowed for multiple generation datasets in timeseries.
- Loading branch information
1 parent
3a9f4f6
commit 7d06033
Showing
25 changed files
with
754 additions
and
659 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"project_name": "Bespoke - FY22", | ||
"directory": "~/review_datasets/bespoke_fy22" | ||
"directory": "~/review_datasets/bespoke_fy22", | ||
"current": "ac" | ||
} |
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,5 @@ | ||
{ | ||
"project_name": "SETO - FY23", | ||
"directory": "~/review_datasets/seto_fy23" | ||
"directory": "~/review_datasets/seto_fy23", | ||
"current": "dc" | ||
} |
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
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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# -*- coding: utf-8 -*- | ||
# pylint: skip-file | ||
"""reView project index file.""" | ||
import reView.pages.reeds.controller.callbacks | ||
import reView.pages.rev.controller.callbacks | ||
|
||
from reView.app import app, server | ||
from reView.environment.settings import ( | ||
APP_HOST, | ||
APP_PORT, | ||
DASH_DEBUG, | ||
LOG_LEVEL, | ||
) | ||
from reView.routes import render_page_content | ||
from reView.utils.log import init_logger, log_versions | ||
from reView.utils import calls | ||
|
||
|
||
def main(): | ||
"""Run reView.""" | ||
init_logger(level=LOG_LEVEL) | ||
log_versions() | ||
app.run( | ||
host=APP_HOST, | ||
port=APP_PORT, | ||
debug=True, | ||
# dev_tools_ui=True, | ||
# dev_tools_hot_reload=True, | ||
# dev_tools_hot_reload_interval=5000, | ||
# dev_tools_hot_reload_max_retry=300 | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
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.