Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a93d798
setting up clean slate and domain
admclamb Jun 10, 2026
89b28a6
Move to central package manager
admclamb Jun 10, 2026
9991290
Update domain entities
admclamb Jun 11, 2026
8af9e02
Adding problem domain
admclamb Jun 12, 2026
1e0d95c
add difficulty test
admclamb Jun 12, 2026
6104469
Finish domains
admclamb Jun 12, 2026
7ebac88
update command handler
admclamb Jun 12, 2026
c20c776
Setting up account handler
admclamb Jun 13, 2026
ddd3db8
Update entities
admclamb Jun 14, 2026
3008982
add aspire
admclamb Jun 14, 2026
c7e898c
Updating some things
admclamb Jun 15, 2026
5c5d8a1
remove aspire stuff
admclamb Jun 16, 2026
c9bf75c
Remove initial aspire
admclamb Jun 17, 2026
c0ef128
setting up ef
admclamb Jun 17, 2026
f407138
Update and adding infrastructure.
admclamb Jun 17, 2026
cfa4369
Setting up db migrations
admclamb Jun 18, 2026
aab2077
Updating databases
admclamb Jun 19, 2026
a29929a
Setting up scripts and stuff
admclamb Jun 20, 2026
c1f41fe
Setting up auth0
admclamb Jun 20, 2026
ab9d0f3
Adding api stuff
admclamb Jun 20, 2026
59859d9
Setting up user related code
admclamb Jun 20, 2026
f9cd660
Update for user
admclamb Jun 21, 2026
071ffa9
Set up more stuff
admclamb Jun 22, 2026
3f1a9be
Update seeding and add getting a problem.
admclamb Jun 22, 2026
49830af
Setting up language versions
admclamb Jun 23, 2026
5119ad3
Setting up get problem by slug
admclamb Jun 24, 2026
f80a877
Updater layout
admclamb Jun 25, 2026
0574667
update api#
admclamb Jun 25, 2026
fe44e49
Add username key
admclamb Jun 26, 2026
888dffc
Update id name
admclamb Jun 28, 2026
659c2b0
Update to get problem setup
admclamb Jun 28, 2026
2c0bd24
Adding create submission
admclamb Jun 29, 2026
a16b8ef
Setting up create submission
admclamb Jun 30, 2026
502e4d4
update docker
admclamb Jun 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ csharp_style_prefer_readonly_struct = true
csharp_style_prefer_readonly_struct_member = true

# Code-block preferences
csharp_prefer_braces = true:error
csharp_prefer_braces = false:none
csharp_prefer_simple_using_statement = true:error
csharp_prefer_system_threading_lock = true
csharp_style_namespace_declarations = file_scoped:error
Expand Down Expand Up @@ -244,4 +244,4 @@ dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case
dotnet_naming_style.begins_with_i.capitalization = pascal_case
67 changes: 0 additions & 67 deletions .gitattributes

This file was deleted.

17 changes: 0 additions & 17 deletions .github/dependabot.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/labeler.yml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/ci.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/labeler.yml

This file was deleted.

65 changes: 0 additions & 65 deletions .github/workflows/master_app-awapi-scrum-centralus-03.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/sonar-scan.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/stale.yml

This file was deleted.

28 changes: 28 additions & 0 deletions Algowars.Api/Algowars.Api.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>f1204ecb-b2c7-4ab2-a772-a27e6871af93</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Ardalis.Result.AspNetCore" />
<PackageReference Include="Asp.Versioning.Mvc" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>compile; runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Scalar.AspNetCore" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Algowars.Application\Algowars.Application.csproj" />
<ProjectReference Include="..\Algowars.Infrastructure\Algowars.Infrastructure.csproj" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions Algowars.Api/Algowars.Api.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@Algowars.Api_HostAddress = http://localhost:5041

GET {{Algowars.Api_HostAddress}}/weatherforecast/
Accept: application/json

###
Loading
Loading