This commit is contained in:
Fernando Araoz 2025-01-11 16:20:05 -05:00
commit e8ec8f8e5c
11 changed files with 239 additions and 0 deletions

34
.gitignore vendored Normal file
View File

@ -0,0 +1,34 @@
[Bb]in/
[Oo]bj/
.vs/
.idea/
*.user
*.userosscache
*.sln.docstates
*.suo
*.DS_Store
Thumbs.db
.idea/
*.sln.iml
.idea/**/workspace.xml
appsettings.*.json
!appsettings.json
!appsettings.Example.json
*.dbmdl
*.jfm
*.pfx
*.publishsettings
*.nupkg
**/packages/*
!**/packages/build/
*.nuget.props
*.nuget.targets
# build artifacts
out

View File

@ -0,0 +1,32 @@
using Microsoft.AspNetCore.Mvc;
namespace Trazo.Controllers;
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
private readonly ILogger<WeatherForecastController> _logger;
public WeatherForecastController(ILogger<WeatherForecastController> logger)
{
_logger = logger;
}
[HttpGet(Name = "GetWeatherForecast")]
public IEnumerable<WeatherForecast> Get()
{
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
})
.ToArray();
}
}

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0
WORKDIR /app
# Set ASP.NET to actually listen on all interfaces, not just localhost
ENV ASPNETCORE_URLS=http://+:5266
# Allow non-HTTPS because it's just development, who cares
ENV ASPNETCORE_ENVIRONMENT=Development
ENTRYPOINT ["dotnet", "watch", "run", "--no-launch-profile"]

11
Dockerfile.alpine Normal file
View File

@ -0,0 +1,11 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
WORKDIR /app
COPY . .
RUN dotnet restore
RUN dotnet publish -c Release -o out
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine
WORKDIR /app
COPY --from=build /app/out .
CMD ["./csharp"]

25
Program.cs Normal file
View File

@ -0,0 +1,25 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();

View File

@ -0,0 +1,41 @@
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:22703",
"sslPort": 44392
}
},
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5233",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:7038;http://localhost:5233",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

13
Trazo.csproj Normal file
View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
</ItemGroup>
</Project>

6
Trazo.http Normal file
View File

@ -0,0 +1,6 @@
@Trazo_HostAddress = http://localhost:5233
GET {{Trazo_HostAddress}}/weatherforecast/
Accept: application/json
###

12
WeatherForecast.cs Normal file
View File

@ -0,0 +1,12 @@
namespace Trazo;
public class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}

9
appsettings.json Normal file
View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

46
docker-compose.yml Normal file
View File

@ -0,0 +1,46 @@
services:
aspnet-prison:
container_name: aspnet-prison
build:
context: .
dockerfile: Dockerfile
ports:
- "5266:5266"
volumes:
- ./:/app
networks:
- aspnet-network
aspnet-postgres:
image: postgres:latest
container_name: aspnet-postgres
restart: always
environment:
POSTGRES_DB: postgres
POSTGRES_USER: root
POSTGRES_PASSWORD: root
PGDATA: /var/lib/postgresql/data
# ports:
# - '5432:5432'
networks:
- aspnet-network
aspnet-pgadmin4:
image: elestio/pgadmin:latest
container_name: aspnet-pgadmin
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.com
PGADMIN_DEFAULT_PASSWORD: admin
PGADMIN_LISTEN_PORT: 8080
ports:
- "8080:8080"
volumes:
- ./servers.json:/pgadmin4/servers.json
networks:
- aspnet-network
networks:
aspnet-network:
driver: bridge