Skip to content

Commit

Permalink
Compliance dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Apr 21, 2020
1 parent daad327 commit 81299b6
Show file tree
Hide file tree
Showing 26 changed files with 2,428 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Project ignores
.idea/



# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -50,6 +55,7 @@ coverage.xml
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
Expand All @@ -72,6 +78,7 @@ instance/
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
Expand All @@ -82,7 +89,9 @@ profile_default/
ipython_config.py

# pyenv
.python-version
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
Expand Down Expand Up @@ -127,3 +136,9 @@ dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/
18 changes: 18 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import dash
import dash_auth
import dash_bootstrap_components as dbc


app = dash.Dash(
__name__,
external_stylesheets=[dbc.themes.UNITED]
)
server = app.server
# app.config.suppress_callback_exceptions=True

# # Keep this out of source code repository - save in a file or a database
# VALID_USERNAME_PASSWORD_PAIRS = {
# "comp": "92point8",
# }
# auth = dash_auth.BasicAuth(app, VALID_USERNAME_PASSWORD_PAIRS)

Loading

0 comments on commit 81299b6

Please sign in to comment.