Skip to content

Commit

Permalink
Merge pull request #30 from bogdanbrudiu/features/AddEvent
Browse files Browse the repository at this point in the history
Features/add event
  • Loading branch information
bogdanbrudiu authored Jul 30, 2024
2 parents f255779 + 9aeaaf6 commit e29cf7f
Show file tree
Hide file tree
Showing 49 changed files with 18,603 additions and 11,497 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ jobs:
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: App Settings Variable Substitution
uses: microsoft/variable-substitution@v1
with:
files: '**/appsettings.json'
env:
MailerSettings.From: ${{ secrets.MAILER_SETTINGS_FROM }}
MailerSettings.Username: ${{ secrets.MAILER_SETTINGS_USERNAME }}
MailerSettings.Password: ${{ secrets.MAILER_SETTINGS_PASSOWRD }}
MailerSettings.Host: ${{ secrets.MAILER_SETTINGS_HOST }}
MailerSettings.Port: ${{ secrets.MAILER_SETTINGS_PORT }}
MailerSettings.EnableSSL: ${{ secrets.MAILER_SETTINGS_ENABLESSL }}
Token.Secret: ${{ secrets.TOKEN_SECRET }}
- name: Publish
run: dotnet publish HamEvent/HamEvent.csproj --configuration Release --framework net7.0 --output ./publish --runtime win-x64 --self-contained true -p:PublishTrimmed=false -p:PublishSingleFile=false
- name: Deploy
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -366,3 +366,5 @@ FodyWeavers.xsd
/HamEvent/Database/QSOs.db-shm
/HamEvent/Database/QSOs.db-wal
/HamEvent/.config
/HamEvent/appsettings.Development.json
/HamEvent/ClientApp/.angular/cache/18.1.2
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "AdifLib"]
path = AdifLib
url = https://github.com/M0LTE/AdifLib.git
[submodule "CoreMailer"]
path = CoreMailer
url = https://github.com/riyasat/CoreMailer.git
1 change: 1 addition & 0 deletions CoreMailer
Submodule CoreMailer added at d7dff9
Binary file modified HamEvent/App_Data/QSOs.db
Binary file not shown.
8 changes: 4 additions & 4 deletions HamEvent/ClientApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,19 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "HamEvent:build:production"
"buildTarget": "HamEvent:build:production"
},
"development": {
"browserTarget": "HamEvent:build:development",
"proxyConfig": "proxy.conf.js"
"proxyConfig": "proxy.conf.js",
"buildTarget": "HamEvent:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "HamEvent:build"
"buildTarget": "HamEvent:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit e29cf7f

Please sign in to comment.