Skip to content

Commit c774174

Browse files
committed
Re-organizing file/folder structure
1 parent 4f67724 commit c774174

17 files changed

+221
-359
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,4 +365,4 @@ FodyWeavers.xsd
365365
# Secrets
366366
**/Assets/client_secrets.json
367367

368-
**/logs
368+
/logs

Assets/environment.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
IsDevelopment=false

Controllers/DemoController.cs

-27
This file was deleted.

Controllers/HomeController.cs

-83
This file was deleted.

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) [year] [fullname]
3+
Copyright (c) 2024 Prince Kumar
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Program.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using TransactionTracker.Utils;
1+
using TransactionTracker.src.Utils;
22

33
var builder = WebApplication.CreateBuilder(args);
44

@@ -14,6 +14,7 @@
1414
// Configure the HTTP request pipeline.
1515
if (app.Environment.IsDevelopment())
1616
{
17+
System.Environment.SetEnvironmentVariable("IsDevelopment", "true");
1718
app.UseSwagger();
1819
app.UseSwaggerUI();
1920
}

TransactionTracker.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</ItemGroup>
2626

2727
<ItemGroup>
28-
<Folder Include="Models\" />
28+
<Folder Include="src\Models\" />
2929
</ItemGroup>
3030

3131
</Project>

TransactionTracker.http

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@TransactionTracker_HostAddress = http://localhost:5047
22

3-
GET {{TransactionTracker_HostAddress}}/weatherforecast/
3+
GET {{TransactionTracker_HostAddress}}/demo/Demo
44
Accept: application/json
55

66
###

Utils/ConnectorConfig.cs

-15
This file was deleted.

Utils/CustomLogger.cs

-16
This file was deleted.

Utils/GmailConnector.cs

-95
This file was deleted.

0 commit comments

Comments
 (0)