Compare commits

...

4 Commits

Author SHA1 Message Date
a3c4b027af Forced MAIL_USE_SSL to be false every time
All checks were successful
Docker Build / build (push) Successful in 42s
2024-01-03 14:19:25 -08:00
ea3c80d150 oops forgot == in requirements
All checks were successful
Docker Build / build (push) Successful in 1m39s
2024-01-03 13:37:57 -08:00
06c7c72d31 edited build.yml
Some checks failed
Docker Build / build (push) Failing after 1m11s
2024-01-03 13:29:28 -08:00
3b98fce1b5 edited readme
Some checks failed
Docker Build / build (push) Has been cancelled
2024-01-03 13:28:30 -08:00
4 changed files with 5 additions and 8 deletions

View File

@@ -31,9 +31,9 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: git.izebra.net/mirrored_repos/nexusdash:latest # Adjust the Gitea registry URL and team name
tags: git.izebra.net/izebra_projects/nexusdash-izebra:latest # Adjust the Gitea registry URL and team name
- name: Push Docker image to Gitea
run: docker push git.izebra.net/git.izebra.net/mirrored_repos/nexusdash:latest # Adjust the Gitea registry URL and team name
run: docker push git.izebra.net/izebra_projects/nexusdash-izebra:latest # Adjust the Gitea registry URL and team name
# Add any additional steps you need for deployment or other tasks

View File

@@ -1,4 +1,4 @@
# Nexus Dashboard
# Nexus Dashboard izebra
<p align="center">
<img src="app/static/logo/logo.png" alt="DLU logo"/>

View File

@@ -252,10 +252,7 @@ def register_settings(app):
app.config['MAIL_PORT']
)
)
app.config['MAIL_USE_SSL'] = os.getenv(
'MAIL_USE_SSL',
app.config['MAIL_USE_SSL']
)
app.config['MAIL_USE_SSL'] = False
app.config['MAIL_USE_TLS'] = os.getenv(
'MAIL_USE_TLS',
app.config['MAIL_USE_TLS']

View File

@@ -1,4 +1,4 @@
urllib3=1.23
urllib3==1.23
alembic==1.7.5
APScheduler==3.8.1
astroid==2.9.1