Skip to content

Commit a024ed5

Browse files
authored
Feature/architecture upgrade (#14)
* Intial check in * Remove unwanted params and added addtional methods for COntactPeroson api documents * read me update * docker and docker compose * fix other flows * data seed script update * Only admin can create users * cleaning UI * updated the password in seed data * updated about me * .net update 9 * fixing script * few fix for seed data * seeding script fix * Angular 19 upgrade * adding dockerfile publishing as nginx * update in scripts * updated * build fix * updated dockerfile * nginx port update * Env eample * Updates
1 parent 271729c commit a024ed5

File tree

248 files changed

+9061
-7227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+9061
-7227
lines changed

Api/.dockerignore renamed to .dockerignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,9 @@
2222
**/secrets.dev.yaml
2323
**/values.dev.yaml
2424
LICENSE
25-
README.md
25+
README.md
26+
!**/.gitignore
27+
!.git/HEAD
28+
!.git/config
29+
!.git/packed-refs
30+
!.git/refs/heads/**

.env-example

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# .env
2+
ENVIRONMENT=Production
3+
4+
# SQL Server Connection
5+
SQL_SERVER=mssql
6+
SQL_DATABASE=Contacts
7+
SQL_USER=sa
8+
SQL_PASSWORD=PasYourPassword123
9+
10+
# JWT Settings
11+
JWT_SECRET=THIS USED TO SIGN AND VERIFY JWT TOKENS, REPLACE IT WITH YOUR OWN SECRET, IT CAN BE ANY STRING
12+
JWT_ISSUER=http://localhost:8000
13+
JWT_AUDIENCE=http://localhost:8000
14+
PASSWORD_RESET_URL=http://localhost/reset-password/
15+
16+
# SMTP Settings
17+
SMTP_SERVER=smtp.office365.com
18+
SMTP_PORT=587
19+
20+
SMTP_PASSWORD=xxxxxx
21+
22+
SMTP_ENABLE_SSL=true

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,4 +340,8 @@ ASALocalRun/
340340
healthchecksdb
341341

342342
WebApi/appsettings.Development.json
343-
VSIXCore/
343+
VSIXCore/
344+
frontend/node_modules/
345+
frontend/dist/
346+
.env
347+
.DS_Store

Api/Application/Application.csproj

Lines changed: 0 additions & 20 deletions
This file was deleted.

Api/Application/Behaviours/ValidationBehaviour.cs

Lines changed: 0 additions & 33 deletions
This file was deleted.

Api/Application/DTOs/Account/AuthenticationRequest.cs

Lines changed: 0 additions & 7 deletions
This file was deleted.

Api/Application/DTOs/Account/AuthenticationResponse.cs

Lines changed: 0 additions & 18 deletions
This file was deleted.

Api/Application/DTOs/Account/ForgotPasswordRequest.cs

Lines changed: 0 additions & 10 deletions
This file was deleted.

Api/Application/DTOs/Account/RefreshToken.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

Api/Application/DTOs/Account/RegisterRequest.cs

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)