Skip to content

Commit

Permalink
add logo to settings
Browse files Browse the repository at this point in the history
update gitignore
remove old test script for dash app
  • Loading branch information
ikaryss committed Nov 20, 2022
1 parent 15fbeb4 commit 306daf6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 165 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,7 @@ tech_tests.ipynb
/pyquac/ddd.csv
/pyquac/jyp_app.ipynb
/examples/random_test.ipynb
/.vscode
/.vscode
/pyquac/good_case.csv
/pyquac/very_good.csv
/pyquac/research.ipynb
156 changes: 0 additions & 156 deletions pyquac/jupyter_app.py

This file was deleted.

20 changes: 12 additions & 8 deletions pyquac/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ class Settings(BaseSettings):

# Dash/Plotly
debug: bool = True
css_url: str = r'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'
app_name: str = 'FMN lab | Pyquac'
app_logo: str = r'/assets/logo_sign.png'
app_logo_url: str = r'https://github.com/ikaryss/pyquac/blob/main/images/logo_sign.png?raw=true'
app_link: str = r'https://fmn.bmstu.ru/'
app_linkedin_url: str = r'https://fmn.bmstu.ru/'
app_github_url: str = r'https://github.com/ikaryss/pyquac'
css_url: str = r"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
app_name: str = "FMN lab | pyquac"
app_logo: str = r"/assets/logo_sign.png"
app_logo_url: str = (
r"https://github.com/ikaryss/pyquac/blob/main/images/logo_sign.png?raw=true"
)
app_logo_pyquac: str = r"assets/logo_pyquac.png"
app_link: str = r"https://fmn.bmstu.ru/"
app_linkedin_url: str = r"https://fmn.bmstu.ru/"
app_github_url: str = r"https://github.com/ikaryss/pyquac"

class Config:
"""
Expand All @@ -30,4 +33,5 @@ class Config:
env_prefix = "SMD_"
# SMD stands for Stock Market Dashboard

settings = Settings()

settings = Settings()

0 comments on commit 306daf6

Please sign in to comment.