Miscelanious trials

This commit is contained in:
eelke 2026-02-06 19:58:01 +01:00
commit f99c97f392
33 changed files with 881 additions and 0 deletions

15
.idea/.idea.IdentityShroud/.idea/.gitignore generated vendored Normal file
View file

@ -0,0 +1,15 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/modules.xml
/contentModel.xml
/.idea.IdentityShroud.iml
/projectSettingsUpdater.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View file

@ -0,0 +1,21 @@
# This is a generated file. Not intended for manual editing.
services:
identityshroud.api:
build:
context: "/home/eelke/RiderProjects/IdentityShroud"
dockerfile: "IdentityShroud.Api/Dockerfile"
target: "base"
command: []
entrypoint:
- "dotnet"
- "/app/bin/Debug/net10.0/IdentityShroud.Api.dll"
environment:
ASPNETCORE_ENVIRONMENT: "Development"
DOTNET_USE_POLLING_FILE_WATCHER: "true"
image: "identityshroud.api:dev"
ports: []
volumes:
- "/home/eelke/RiderProjects/IdentityShroud/IdentityShroud.Api:/app:rw"
- "/home/eelke/RiderProjects/IdentityShroud:/src:rw"
- "/home/eelke/.nuget/packages:/home/app/.nuget/packages"
working_dir: "/app"